pub struct GetEventSchema {Show 17 fields
pub id: Option<String>,
pub calendar_id: Option<String>,
pub status: Option<String>,
pub title: Option<String>,
pub assigned_user_id: Option<String>,
pub notes: Option<String>,
pub start_time: Option<String>,
pub end_time: Option<String>,
pub address: Option<String>,
pub location_id: Option<String>,
pub contact_id: Option<String>,
pub group_id: Option<String>,
pub appointment_status: Option<String>,
pub users: Vec<String>,
pub date_added: Option<String>,
pub date_updated: Option<String>,
pub assigned_resources: Vec<String>,
}Available on crate feature
contacts only.Expand description
GetEventSchema from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>§calendar_id: Option<String>§status: Option<String>§title: Option<String>§assigned_user_id: Option<String>§notes: Option<String>§start_time: Option<String>§end_time: Option<String>§address: Option<String>§location_id: Option<String>§contact_id: Option<String>§group_id: Option<String>§appointment_status: Option<String>§users: Vec<String>§date_added: Option<String>§date_updated: Option<String>§assigned_resources: Vec<String>Trait Implementations§
Source§impl Clone for GetEventSchema
impl Clone for GetEventSchema
Source§fn clone(&self) -> GetEventSchema
fn clone(&self) -> GetEventSchema
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 GetEventSchema
impl Debug for GetEventSchema
Source§impl Default for GetEventSchema
impl Default for GetEventSchema
Source§fn default() -> GetEventSchema
fn default() -> GetEventSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetEventSchema
impl<'de> Deserialize<'de> for GetEventSchema
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 GetEventSchema
impl RefUnwindSafe for GetEventSchema
impl Send for GetEventSchema
impl Sync for GetEventSchema
impl Unpin for GetEventSchema
impl UnsafeUnpin for GetEventSchema
impl UnwindSafe for GetEventSchema
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