namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Maximum size of an allowable upload.
///
public class MaxUpload : ZoneSettingBase
{
///
/// Initialize a new instance of the class.
///
public MaxUpload()
{
Id = ZoneSettingId.MaxUpload;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public MaxUploadSize Value { get; set; }
}
///
/// Maximum size of an allowable upload.
/// Soruce
///
public enum MaxUploadSize : int
{
///
/// 100 MB.
///
M100 = 100,
///
/// 125 MB.
///
M125 = 125,
///
/// 150 MB.
///
M150 = 150,
///
/// 175 MB.
///
M175 = 175,
///
/// 200 MB.
///
M200 = 200,
///
/// 225 MB.
///
M225 = 225,
///
/// 250 MB.
///
M250 = 250,
///
/// 275 MB.
///
M275 = 275,
///
/// 300 MB.
///
M300 = 300,
///
/// 325 MB.
///
M325 = 325,
///
/// 350 MB.
///
M350 = 350,
///
/// 375 MB.
///
M375 = 375,
///
/// 400 MB.
///
M400 = 400,
///
/// 425 MB.
///
M425 = 425,
///
/// 450 MB.
///
M450 = 450,
///
/// 475 MB.
///
M475 = 475,
///
/// 500 MB.
///
M500 = 500,
///
/// 1000 MB (1 GB).
///
G1 = 1000
}
}