namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Represents a request to create a zone subscription. /// public class CreateZoneSubscriptionRequest { /// /// Initializes a new instance of the class. /// /// The zone identifier. public CreateZoneSubscriptionRequest(string zoneId) { ZoneId = zoneId; } /// /// The zone identifier. /// public string ZoneId { get; set; } /// /// How often the subscription is renewed automatically. /// public RenewFrequency? Frequency { get; set; } /// /// The rate plan applied to the subscription. /// public RatePlan? RatePlan { get; set; } } }