vapi_client/models/
update_supabase_credential_dto.rs

1/*
2 * Vapi API
3 *
4 * Voice AI for developers.
5 *
6 * The version of the OpenAPI document: 1.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct UpdateSupabaseCredentialDto {
16    /// This is the name of credential. This is just for your reference.
17    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
18    pub name: Option<String>,
19    #[serde(rename = "bucketPlan", skip_serializing_if = "Option::is_none")]
20    pub bucket_plan: Option<models::SupabaseBucketPlan>,
21}
22
23impl UpdateSupabaseCredentialDto {
24    pub fn new() -> UpdateSupabaseCredentialDto {
25        UpdateSupabaseCredentialDto {
26            name: None,
27            bucket_plan: None,
28        }
29    }
30}
31