dtz_core/models/
environment_variables_value.rs

1/*
2 * DTZ Core Api
3 *
4 * a generated client for the DTZ Core 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 EnvironmentVariablesValue {
18    String(String),
19    EncryptedValue(Box<models::EncryptedValue>),
20}
21
22impl Default for EnvironmentVariablesValue {
23    fn default() -> Self {
24        Self::String(Default::default())
25    }
26}
27