vapi_client/models/
azure_blob_storage_bucket_plan.rs1use serde::{Deserialize, Serialize};
12use utoipa::ToSchema;
13
14
15use crate::models;
16
17#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, ToSchema)]
18pub struct AzureBlobStorageBucketPlan {
19    #[serde(rename = "connectionString")]
21    pub connection_string: String,
22    #[serde(rename = "containerName")]
24    pub container_name: String,
25    #[serde(rename = "path", skip_serializing_if = "Option::is_none")]
27    pub path: Option<String>,
28}
29
30impl AzureBlobStorageBucketPlan {
31    pub fn new(connection_string: String, container_name: String) -> AzureBlobStorageBucketPlan {
32        AzureBlobStorageBucketPlan {
33            connection_string,
34            container_name,
35            path: None,
36        }
37    }
38}