fastly_api/models/
ngwaf_response_configure.rs1#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
12pub struct NgwafResponseConfigure {
13 #[serde(rename = "product", skip_serializing_if = "Option::is_none")]
14 pub product: Option<Box<crate::models::NgwafResponseProductProduct>>,
15 #[serde(rename = "service", skip_serializing_if = "Option::is_none")]
16 pub service: Option<Box<crate::models::ApiDiscoveryResponseServiceService>>,
17 #[serde(rename = "configuration", skip_serializing_if = "Option::is_none")]
18 pub configuration: Option<Box<crate::models::NgwafResponseConfigurationConfiguration>>,
19 #[serde(rename = "_links", skip_serializing_if = "Option::is_none")]
20 pub _links: Option<Box<crate::models::NgwafResponseLinksLinks>>,
21}
22
23impl NgwafResponseConfigure {
24 pub fn new() -> NgwafResponseConfigure {
25 NgwafResponseConfigure {
26 product: None,
27 service: None,
28 configuration: None,
29 _links: None,
30 }
31 }
32}
33
34