Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

BillingCycleFrequency.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;

/// 
/// Represents the billing cycle frequency details
/// 
public class BillingCycleFrequency
{
    #region Properties

    /// 
    /// Gets or sets the interval unit.
    /// 
    [JsonProperty(PropertyName = "interval_unit")]
    public string IntervalUnit { get; set; }

    /// 
    /// Gets or sets the interval count.
    /// 
    [JsonProperty(PropertyName = "interval_count")]
    public int IntervalCount { get; set; }

    #endregion
}