pub struct ServiceBookingQueryDTO {
pub override_availability: Option<bool>,
pub skip_scheduling_notice: Option<bool>,
}Available on crate feature
calendars only.Expand description
ServiceBookingQueryDTO from the GoHighLevel OpenAPI spec.
Fields§
§override_availability: Option<bool>If true the time slot validation would be avoided for any booking creation/update (even the skipSchedulingNotice)
skip_scheduling_notice: Option<bool>If set to true, the minimum scheduling notice and date range would be ignored
Trait Implementations§
Source§impl Clone for ServiceBookingQueryDTO
impl Clone for ServiceBookingQueryDTO
Source§fn clone(&self) -> ServiceBookingQueryDTO
fn clone(&self) -> ServiceBookingQueryDTO
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 ServiceBookingQueryDTO
impl Debug for ServiceBookingQueryDTO
Source§impl Default for ServiceBookingQueryDTO
impl Default for ServiceBookingQueryDTO
Source§fn default() -> ServiceBookingQueryDTO
fn default() -> ServiceBookingQueryDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceBookingQueryDTO
impl<'de> Deserialize<'de> for ServiceBookingQueryDTO
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 ServiceBookingQueryDTO
impl RefUnwindSafe for ServiceBookingQueryDTO
impl Send for ServiceBookingQueryDTO
impl Sync for ServiceBookingQueryDTO
impl Unpin for ServiceBookingQueryDTO
impl UnsafeUnpin for ServiceBookingQueryDTO
impl UnwindSafe for ServiceBookingQueryDTO
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