dtz-containers 2.2.5

a generated client for the DTZ Containers API
Documentation
/*
 * DTZ Containers
 *
 * a generated client for the DTZ Containers API
 *
 * Contact: jens@apimeister.com
 * Generated by: https://openapi-generator.tech
 */

#[allow(unused_imports)]
use crate::models;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum JobResponseEnvVariablesValue {
    String(String),
    EncryptedValue(Box<models::EncryptedValue>),
}

impl Default for JobResponseEnvVariablesValue {
    fn default() -> Self {
        Self::String(Default::default())
    }
}