pub struct SendPostCallNotificationSchema {
pub admins: Option<bool>,
pub all_users: Option<bool>,
pub contact_assigned_user: Option<bool>,
pub specific_users: Vec<String>,
pub custom_emails: Vec<String>,
}Available on crate feature
voice-ai only.Expand description
SendPostCallNotificationSchema from the GoHighLevel OpenAPI spec.
Fields§
§admins: Option<bool>Send notifications to admins
all_users: Option<bool>Send notifications to all users
contact_assigned_user: Option<bool>Send notifications to contact assigned user
specific_users: Vec<String>Specific user IDs to notify
custom_emails: Vec<String>Custom email addresses to notify
Trait Implementations§
Source§impl Clone for SendPostCallNotificationSchema
impl Clone for SendPostCallNotificationSchema
Source§fn clone(&self) -> SendPostCallNotificationSchema
fn clone(&self) -> SendPostCallNotificationSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SendPostCallNotificationSchema
impl Default for SendPostCallNotificationSchema
Source§fn default() -> SendPostCallNotificationSchema
fn default() -> SendPostCallNotificationSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendPostCallNotificationSchema
impl<'de> Deserialize<'de> for SendPostCallNotificationSchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SendPostCallNotificationSchema
impl RefUnwindSafe for SendPostCallNotificationSchema
impl Send for SendPostCallNotificationSchema
impl Sync for SendPostCallNotificationSchema
impl Unpin for SendPostCallNotificationSchema
impl UnsafeUnpin for SendPostCallNotificationSchema
impl UnwindSafe for SendPostCallNotificationSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more