#[derive(Debug, Clone)]
pub struct IpRanges {
pub sync_token: &'static str,
pub create_date: &'static str,
pub prefixes: &'static [Prefix],
pub ipv6_prefixes: &'static [Ipv6Prefix],
}
#[derive(Debug, Clone)]
pub struct Prefix {
pub ip_prefix: &'static str,
pub region: &'static str,
pub service: &'static str,
pub network_border_group: &'static str,
}
#[derive(Debug, Clone)]
pub struct Ipv6Prefix {
pub ipv6_prefix: &'static str,
pub region: &'static str,
pub service: &'static str,
pub network_border_group: &'static str,
}