pub struct SendPostCallNotificationDTO {
pub admins: bool,
pub all_users: bool,
pub contact_assigned_user: bool,
pub specific_users: Vec<String>,
pub custom_emails: Vec<String>,
}Available on crate feature
voice-ai only.Expand description
SendPostCallNotificationDTO from the GoHighLevel OpenAPI spec.
Fields§
§admins: boolEnables post-call notifications to all admin users in the location. Default: true Required by the API.
all_users: boolEnables post-call notifications to all users in the location. Default: false Required by the API.
contact_assigned_user: boolEnables post-call notifications to the user assigned to the contact. Default: false Required by the API.
specific_users: Vec<String>Array of specific user IDs to receive post-call notifications. Default: [] Required by the API.
custom_emails: Vec<String>Array of custom email addresses to receive post-call notifications. Default: [] Required by the API.
Trait Implementations§
Source§impl Clone for SendPostCallNotificationDTO
impl Clone for SendPostCallNotificationDTO
Source§fn clone(&self) -> SendPostCallNotificationDTO
fn clone(&self) -> SendPostCallNotificationDTO
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 Debug for SendPostCallNotificationDTO
impl Debug for SendPostCallNotificationDTO
Source§impl Default for SendPostCallNotificationDTO
impl Default for SendPostCallNotificationDTO
Source§fn default() -> SendPostCallNotificationDTO
fn default() -> SendPostCallNotificationDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendPostCallNotificationDTO
impl<'de> Deserialize<'de> for SendPostCallNotificationDTO
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 SendPostCallNotificationDTO
impl RefUnwindSafe for SendPostCallNotificationDTO
impl Send for SendPostCallNotificationDTO
impl Sync for SendPostCallNotificationDTO
impl Unpin for SendPostCallNotificationDTO
impl UnsafeUnpin for SendPostCallNotificationDTO
impl UnwindSafe for SendPostCallNotificationDTO
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