Skip to main content

dtz_containers/models/
plain_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, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct PlainValue {
17    /// the plain text value for server side encryption
18    #[serde(rename = "plainValue", skip_serializing_if = "Option::is_none")]
19    pub plain_value: Option<String>,
20}
21
22impl PlainValue {
23    pub fn new() -> PlainValue {
24        PlainValue {
25            plain_value: None,
26        }
27    }
28}
29