pub struct Recurring {
pub freq: Option<String>,
pub count: Option<f64>,
pub booking_option: Option<String>,
pub booking_overlap_default_status: Option<String>,
}Available on crate feature
calendars only.Expand description
Recurring from the GoHighLevel OpenAPI spec.
Fields§
§freq: Option<String>Allowed values: DAILY, WEEKLY, MONTHLY.
count: Option<f64>Number of recurrences
booking_option: Option<String>This setting contols what to do incase a recurring slot is unavailable
Allowed values: skip, continue, book_next.
booking_overlap_default_status: Option<String>This setting contols what to do incase a recurring slot is unavailable
Allowed values: confirmed, new.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Recurring
impl<'de> Deserialize<'de> for Recurring
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 Recurring
impl RefUnwindSafe for Recurring
impl Send for Recurring
impl Sync for Recurring
impl Unpin for Recurring
impl UnsafeUnpin for Recurring
impl UnwindSafe for Recurring
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