namespace AMWD.Net.Api.Cloudflare
{
///
/// A component value for a subscription.
/// Source
///
public class SubscriptionComponent
{
///
/// The default amount assigned.
///
[JsonProperty("default")]
public int? Default { get; set; }
///
/// The name of the component value.
///
[JsonProperty("name")]
public string? Name { get; set; }
///
/// The unit price for the component value.
///
[JsonProperty("price")]
public decimal? Price { get; set; }
///
/// The amount of the component value assigned.
///
[JsonProperty("value")]
public int? Value { get; set; }
}
}