pub struct ScheduleObjectResponseDTO {
pub id: Option<String>,
pub name: Option<String>,
pub location_id: Option<String>,
pub rules: Vec<ScheduleRuleDTO>,
pub timezone: Option<String>,
pub date_added: Option<String>,
pub date_updated: Option<String>,
pub user_id: Option<String>,
pub calendar_ids: Vec<String>,
pub deleted: Option<bool>,
}calendars only.Expand description
ScheduleObjectResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Unique identifier for the schedule Required by the API. (Optional here so responses that omit it still parse.)
name: Option<String>Human-readable name for the schedule Required by the API. (Optional here so responses that omit it still parse.)
location_id: Option<String>Location ID where this schedule applies Required by the API. (Optional here so responses that omit it still parse.)
rules: Vec<ScheduleRuleDTO>Schedule rules defining when the schedule is active Required by the API. (Optional here so responses that omit it still parse.)
timezone: Option<String>Timezone for the schedule (IANA timezone identifier) Required by the API. (Optional here so responses that omit it still parse.)
date_added: Option<String>ISO date string when the schedule was created Required by the API. (Optional here so responses that omit it still parse.)
date_updated: Option<String>ISO date string when the schedule was last updated Required by the API. (Optional here so responses that omit it still parse.)
user_id: Option<String>User ID associated with the schedule Required by the API. (Optional here so responses that omit it still parse.)
calendar_ids: Vec<String>Calendar IDs associated with the schedule
deleted: Option<bool>Whether the schedule has been deleted Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for ScheduleObjectResponseDTO
impl Clone for ScheduleObjectResponseDTO
Source§fn clone(&self) -> ScheduleObjectResponseDTO
fn clone(&self) -> ScheduleObjectResponseDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more