Skip to main content

dtz_containers/models/
create_job_request_env_variables_value.rs

1/*
2 * DTZ Containers
3 *
4 * a generated client for the DTZ Containers API
5 *
6 * Contact: jens@apimeister.com
7 * Generated by: https://openapi-generator.tech
8 */
9
10#[allow(unused_imports)]
11use crate::models;
12#[allow(unused_imports)]
13use serde::{Deserialize, Serialize};
14
15#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
16#[serde(untagged)]
17pub enum CreateJobRequestEnvVariablesValue {
18    String(String),
19    EncryptedValue(Box<models::EncryptedValue>),
20    PlainValue(Box<models::PlainValue>),
21}
22
23impl Default for CreateJobRequestEnvVariablesValue {
24    fn default() -> Self {
25        Self::String(Default::default())
26    }
27}
28