/*
* Vapi API
*
* Voice AI for developers.
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateGoogleCalendarOAuth2ClientCredentialDto {
/// This is the name of credential. This is just for your reference.
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
}
impl UpdateGoogleCalendarOAuth2ClientCredentialDto {
pub fn new() -> UpdateGoogleCalendarOAuth2ClientCredentialDto {
UpdateGoogleCalendarOAuth2ClientCredentialDto { name: None }
}
}