using System.Runtime.Serialization; using Newtonsoft.Json.Converters; namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Value states on/off/custom. /// Source /// [JsonConverter(typeof(StringEnumConverter))] public enum OnOffCustomState { /// /// On state. /// [EnumMember(Value = "on")] On = 1, /// /// Off state. /// [EnumMember(Value = "off")] Off = 2, /// /// Custom state. /// [EnumMember(Value = "custom")] Custom = 3 } }