pub struct LocationConfiguration {
pub kind: String,
pub location: Option<String>,
}Available on crate feature
calendars only.Expand description
LocationConfiguration from the GoHighLevel OpenAPI spec.
Fields§
§kind: StringType 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.
location: Option<String>Address for meeting location. Not applicable on “zoom_conference”, “google_conference” and “ms_teams_conference” kind
Trait Implementations§
Source§impl Clone for LocationConfiguration
impl Clone for LocationConfiguration
Source§fn clone(&self) -> LocationConfiguration
fn clone(&self) -> LocationConfiguration
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 LocationConfiguration
impl Debug for LocationConfiguration
Source§impl Default for LocationConfiguration
impl Default for LocationConfiguration
Source§fn default() -> LocationConfiguration
fn default() -> LocationConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocationConfiguration
impl<'de> Deserialize<'de> for LocationConfiguration
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 LocationConfiguration
impl RefUnwindSafe for LocationConfiguration
impl Send for LocationConfiguration
impl Sync for LocationConfiguration
impl Unpin for LocationConfiguration
impl UnsafeUnpin for LocationConfiguration
impl UnwindSafe for LocationConfiguration
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