1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct SubnetsSubnetPoolStaticRoute {
    /// Address of the gateway in the format: yyy.yyy.yyy.yyy
    #[serde(rename = "gateway")]
    pub gateway: String,
    /// Prefix length in the format: nn.
    #[serde(rename = "prefixlen")]
    pub prefixlen: i32,
    /// Network address in the format: xxx.xxx.xxx.xxx
    #[serde(rename = "subnet")]
    pub subnet: String,
}