pub struct BusinessBookingProfile {
pub allow_user_cancel: Option<bool>,
pub booking_enabled: Option<bool>,
pub booking_policy: Option<BusinessBookingProfileBookingPolicy>,
pub business_appointment_settings: Option<BusinessAppointmentSettings>,
pub created_at: Option<String>,
pub customer_timezone_choice: Option<BusinessBookingProfileCustomerTimezoneChoice>,
pub seller_id: Option<String>,
pub support_seller_level_writes: Option<bool>,
}Fields§
§allow_user_cancel: Option<bool>§booking_enabled: Option<bool>§booking_policy: Option<BusinessBookingProfileBookingPolicy>§business_appointment_settings: Option<BusinessAppointmentSettings>§created_at: Option<String>§customer_timezone_choice: Option<BusinessBookingProfileCustomerTimezoneChoice>§seller_id: Option<String>§support_seller_level_writes: Option<bool>Trait Implementations§
Source§impl Clone for BusinessBookingProfile
impl Clone for BusinessBookingProfile
Source§fn clone(&self) -> BusinessBookingProfile
fn clone(&self) -> BusinessBookingProfile
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 BusinessBookingProfile
impl Debug for BusinessBookingProfile
Source§impl<'de> Deserialize<'de> for BusinessBookingProfile
impl<'de> Deserialize<'de> for BusinessBookingProfile
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 BusinessBookingProfile
impl RefUnwindSafe for BusinessBookingProfile
impl Send for BusinessBookingProfile
impl Sync for BusinessBookingProfile
impl Unpin for BusinessBookingProfile
impl UnwindSafe for BusinessBookingProfile
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