pub struct BusinessAppointmentSettings {Show 13 fields
pub alignment_time: Option<String>,
pub any_team_member_booking_enabled: Option<bool>,
pub cancellation_fee_money: Option<Money>,
pub cancellation_policy: Option<BusinessAppointmentSettingsCancellationPolicy>,
pub cancellation_policy_text: Option<String>,
pub cancellation_window_seconds: Option<i32>,
pub location_types: Option<Vec<BusinessAppointmentSettingsBookingLocationType>>,
pub max_appointments_per_day_limit: Option<i32>,
pub max_appointments_per_day_limit_type: Option<BusinessAppointmentSettingsMaxAppointmentsPerDayLimitType>,
pub max_booking_lead_time_seconds: Option<i32>,
pub min_booking_lead_time_seconds: Option<i32>,
pub multiple_service_booking_enabled: Option<bool>,
pub skip_booking_flow_staff_selection: Option<bool>,
}Fields§
§alignment_time: Option<String>§any_team_member_booking_enabled: Option<bool>§cancellation_fee_money: Option<Money>§cancellation_policy: Option<BusinessAppointmentSettingsCancellationPolicy>§cancellation_policy_text: Option<String>§cancellation_window_seconds: Option<i32>§location_types: Option<Vec<BusinessAppointmentSettingsBookingLocationType>>§max_appointments_per_day_limit: Option<i32>§max_appointments_per_day_limit_type: Option<BusinessAppointmentSettingsMaxAppointmentsPerDayLimitType>§max_booking_lead_time_seconds: Option<i32>§min_booking_lead_time_seconds: Option<i32>§multiple_service_booking_enabled: Option<bool>§skip_booking_flow_staff_selection: Option<bool>Trait Implementations§
Source§impl Clone for BusinessAppointmentSettings
impl Clone for BusinessAppointmentSettings
Source§fn clone(&self) -> BusinessAppointmentSettings
fn clone(&self) -> BusinessAppointmentSettings
Returns a duplicate of the value. Read more
1.0.0 · 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 BusinessAppointmentSettings
impl Debug for BusinessAppointmentSettings
Source§impl<'de> Deserialize<'de> for BusinessAppointmentSettings
impl<'de> Deserialize<'de> for BusinessAppointmentSettings
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 BusinessAppointmentSettings
impl RefUnwindSafe for BusinessAppointmentSettings
impl Send for BusinessAppointmentSettings
impl Sync for BusinessAppointmentSettings
impl Unpin for BusinessAppointmentSettings
impl UnwindSafe for BusinessAppointmentSettings
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