pub struct LocationConfigurationResponse {
pub kind: Option<String>,
pub location: Option<String>,
pub meeting_id: Option<String>,
}Available on crate feature
calendars only.Expand description
LocationConfigurationResponse from the GoHighLevel OpenAPI spec.
Fields§
§kind: Option<String>Type of meeting location. zoom_conference/google_conference/ms_teams_conference is not
supported in event calendar type
Allowed values: custom, zoom_conference, google_conference, inbound_call,
outbound_call, physical, booker, ms_teams_conference.
Required by the API.
(Optional here so responses that omit it still parse.)
location: Option<String>Address for meeting location. Not applicable on “zoom_conference”, “google_conference” and “ms_teams_conference” kind
meeting_id: Option<String>Unique ID used to select a specific meeting location
Trait Implementations§
Source§impl Clone for LocationConfigurationResponse
impl Clone for LocationConfigurationResponse
Source§fn clone(&self) -> LocationConfigurationResponse
fn clone(&self) -> LocationConfigurationResponse
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 LocationConfigurationResponse
impl Default for LocationConfigurationResponse
Source§fn default() -> LocationConfigurationResponse
fn default() -> LocationConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocationConfigurationResponse
impl<'de> Deserialize<'de> for LocationConfigurationResponse
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 LocationConfigurationResponse
impl RefUnwindSafe for LocationConfigurationResponse
impl Send for LocationConfigurationResponse
impl Sync for LocationConfigurationResponse
impl Unpin for LocationConfigurationResponse
impl UnsafeUnpin for LocationConfigurationResponse
impl UnwindSafe for LocationConfigurationResponse
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