pub struct CalendarNotification {
pub type_: Option<String>,
pub should_send_to_contact: Option<bool>,
pub should_send_to_guest: Option<bool>,
pub should_send_to_user: Option<bool>,
pub should_send_to_selected_users: Option<bool>,
pub selected_users: Option<String>,
}Available on crate feature
calendars only.Expand description
CalendarNotification from the GoHighLevel OpenAPI spec.
Fields§
§type_: Option<String>Calendar Notification
Allowed values: email.
should_send_to_contact: Option<bool>Required by the API. (Optional here so responses that omit it still parse.)
should_send_to_guest: Option<bool>Required by the API. (Optional here so responses that omit it still parse.)
should_send_to_user: Option<bool>Required by the API. (Optional here so responses that omit it still parse.)
should_send_to_selected_users: Option<bool>Required by the API. (Optional here so responses that omit it still parse.)
selected_users: Option<String>Comma separated emails Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for CalendarNotification
impl Clone for CalendarNotification
Source§fn clone(&self) -> CalendarNotification
fn clone(&self) -> CalendarNotification
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 CalendarNotification
impl Debug for CalendarNotification
Source§impl Default for CalendarNotification
impl Default for CalendarNotification
Source§fn default() -> CalendarNotification
fn default() -> CalendarNotification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CalendarNotification
impl<'de> Deserialize<'de> for CalendarNotification
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 CalendarNotification
impl RefUnwindSafe for CalendarNotification
impl Send for CalendarNotification
impl Sync for CalendarNotification
impl Unpin for CalendarNotification
impl UnsafeUnpin for CalendarNotification
impl UnwindSafe for CalendarNotification
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