use lazy_static::lazy_static;
#[rustfmt::skip]
lazy_static! {
pub static ref _TEMPLATE: &'static str = r#"
#[rustfmt::skip]
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct STRUCT_NAME_HERE {
{{#each fields}}
#[serde(skip_serializing_if = "Option::is_none")]
pub {{this.name}}: {{{this.rust_type}}},
{{/each}}
}
"#;
}