/*
* Hai (Ash API) specifications.
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.7
* Contact: E36 Knots
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GenericSecretBase {
/// Content of the secret
#[serde(rename = "content", skip_serializing_if = "Option::is_none")]
pub content: Option<String>,
#[serde(rename = "secretType", skip_serializing_if = "Option::is_none")]
pub secret_type: Option<Box<crate::models::SecretType>>,
}
impl GenericSecretBase {
pub fn new() -> GenericSecretBase {
GenericSecretBase {
content: None,
secret_type: None,
}
}
}