ash_api 0.1.7

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * 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 AzureCredentialsSecretBase {
    /// Azure subscription ID
    #[serde(rename = "subscriptionId", skip_serializing_if = "Option::is_none")]
    pub subscription_id: Option<uuid::Uuid>,
    /// Azure application ID
    #[serde(rename = "applicationId", skip_serializing_if = "Option::is_none")]
    pub application_id: Option<uuid::Uuid>,
    /// Azure application password
    #[serde(rename = "applicationPassword", skip_serializing_if = "Option::is_none")]
    pub application_password: Option<String>,
    #[serde(rename = "secretType", skip_serializing_if = "Option::is_none")]
    pub secret_type: Option<Box<crate::models::SecretType>>,
}

impl AzureCredentialsSecretBase {
    pub fn new() -> AzureCredentialsSecretBase {
        AzureCredentialsSecretBase {
            subscription_id: None,
            application_id: None,
            application_password: None,
            secret_type: None,
        }
    }
}