Try your search with a different keyword or use * as a wildcard.
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
}