nautobot-openapi 0.1.1

low level nautobot bindings (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * API Documentation
 *
 * Source of truth and network automation platform
 *
 * The version of the OpenAPI document: 2.4.20 (2.4)
 *
 * Generated by: https://openapi-generator.tech
 */

#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct StatusRetrieve200Response {
    #[serde(rename = "django-version", skip_serializing_if = "Option::is_none")]
    pub django_version: Option<String>,
    #[serde(rename = "installed-apps", skip_serializing_if = "Option::is_none")]
    pub installed_apps: Option<serde_json::Value>,
    #[serde(rename = "nautobot-version", skip_serializing_if = "Option::is_none")]
    pub nautobot_version: Option<String>,
    #[serde(rename = "nautobot-apps", skip_serializing_if = "Option::is_none")]
    pub nautobot_apps: Option<serde_json::Value>,
    #[serde(rename = "plugins", skip_serializing_if = "Option::is_none")]
    pub plugins: Option<serde_json::Value>,
    #[serde(rename = "python-version", skip_serializing_if = "Option::is_none")]
    pub python_version: Option<String>,
    #[serde(
        rename = "celery-workers-running",
        skip_serializing_if = "Option::is_none"
    )]
    pub celery_workers_running: Option<i32>,
}

impl StatusRetrieve200Response {
    pub fn new() -> StatusRetrieve200Response {
        StatusRetrieve200Response {
            django_version: None,
            installed_apps: None,
            nautobot_version: None,
            nautobot_apps: None,
            plugins: None,
            python_version: None,
            celery_workers_running: None,
        }
    }
}