#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ImportRawDnsZoneRequest {
#[serde(rename = "content", skip_serializing_if = "Option::is_none")]
pub content: Option<String>,
#[serde(rename = "project_id", skip_serializing_if = "Option::is_none")]
pub project_id: Option<String>,
#[serde(rename = "format", skip_serializing_if = "Option::is_none")]
pub format: Option<crate::models::ScalewayPeriodDomainPeriodV2beta1PeriodRawFormat>,
#[serde(rename = "bind_source", skip_serializing_if = "Option::is_none")]
pub bind_source: Option<Box<crate::models::ImportRawDnsZoneRequestBindSource>>,
#[serde(rename = "axfr_source", skip_serializing_if = "Option::is_none")]
pub axfr_source: Option<Box<crate::models::ImportRawDnsZoneRequestAxfrSource>>,
}
impl ImportRawDnsZoneRequest {
pub fn new() -> ImportRawDnsZoneRequest {
ImportRawDnsZoneRequest {
content: None,
project_id: None,
format: None,
bind_source: None,
axfr_source: None,
}
}
}