netbox-openapi 0.6.0

low level netbox bindings (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * NetBox REST API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 4.6.2 (4.6)
 *
 * Generated by: https://openapi-generator.tech
 */

/// RenderedConfig : Describes the JSON response returned by the /render-config/ and /render/ endpoints.

#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct RenderedConfig {
    #[serde(rename = "configtemplate", skip_serializing_if = "Option::is_none")]
    pub configtemplate: Option<Box<crate::models::BriefConfigTemplate>>,
    /// The rendered template output.
    #[serde(rename = "content", skip_serializing_if = "Option::is_none")]
    pub content: Option<String>,
}

impl RenderedConfig {
    /// Describes the JSON response returned by the /render-config/ and /render/ endpoints.
    pub fn new() -> RenderedConfig {
        RenderedConfig {
            configtemplate: None,
            content: None,
        }
    }
}