namespace AMWD.Net.Api.Cloudflare
{
///
/// A load balancer preview.
/// Source
///
public class LoadBalancerPreview
{
///
/// Monitored pool IDs mapped to their respective names.
///
[JsonProperty("pools")]
public IDictionary? Pools { get; set; }
///
/// Preview ID.
///
[JsonProperty("preview_id")]
public string? PreviewId { get; set; }
}
}