pub struct BlockSlotCreateRequestDTO {
pub title: Option<String>,
pub calendar_id: String,
pub assigned_user_id: Option<String>,
pub location_id: String,
pub start_time: Option<String>,
pub end_time: Option<String>,
}Available on crate feature
calendars only.Expand description
BlockSlotCreateRequestDTO from the GoHighLevel OpenAPI spec.
Fields§
§title: Option<String>Title
calendar_id: StringEither calendarId or assignedUserId can be set, not both. Required by the API.
assigned_user_id: Option<String>Either calendarId or assignedUserId can be set, not both.
location_id: StringLocation Id Required by the API.
start_time: Option<String>Start Time
end_time: Option<String>End Time
Trait Implementations§
Source§impl Clone for BlockSlotCreateRequestDTO
impl Clone for BlockSlotCreateRequestDTO
Source§fn clone(&self) -> BlockSlotCreateRequestDTO
fn clone(&self) -> BlockSlotCreateRequestDTO
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 BlockSlotCreateRequestDTO
impl Debug for BlockSlotCreateRequestDTO
Source§impl Default for BlockSlotCreateRequestDTO
impl Default for BlockSlotCreateRequestDTO
Source§fn default() -> BlockSlotCreateRequestDTO
fn default() -> BlockSlotCreateRequestDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlockSlotCreateRequestDTO
impl<'de> Deserialize<'de> for BlockSlotCreateRequestDTO
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 BlockSlotCreateRequestDTO
impl RefUnwindSafe for BlockSlotCreateRequestDTO
impl Send for BlockSlotCreateRequestDTO
impl Sync for BlockSlotCreateRequestDTO
impl Unpin for BlockSlotCreateRequestDTO
impl UnsafeUnpin for BlockSlotCreateRequestDTO
impl UnwindSafe for BlockSlotCreateRequestDTO
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