pub struct AdScheduleTargetDTO {
pub start_minute: String,
pub end_minute: String,
pub day_of_week: String,
pub start_hour: f64,
pub end_hour: f64,
}Available on crate feature
ad-publishing only.Expand description
AdScheduleTargetDTO from the GoHighLevel OpenAPI spec.
Fields§
§start_minute: StringMinute mark the schedule starts at
Allowed values: ZERO, FIFTEEN, THIRTY, FORTY_FIVE.
Required by the API.
end_minute: StringMinute mark the schedule ends at
Allowed values: ZERO, FIFTEEN, THIRTY, FORTY_FIVE.
Required by the API.
day_of_week: StringDay of the week for this schedule
Allowed values: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY,
SUNDAY.
Required by the API.
start_hour: f64Start hour in 24h format (0-23) Required by the API.
end_hour: f64End hour in 24h format (0-23) Required by the API.
Trait Implementations§
Source§impl Clone for AdScheduleTargetDTO
impl Clone for AdScheduleTargetDTO
Source§fn clone(&self) -> AdScheduleTargetDTO
fn clone(&self) -> AdScheduleTargetDTO
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 AdScheduleTargetDTO
impl Debug for AdScheduleTargetDTO
Source§impl Default for AdScheduleTargetDTO
impl Default for AdScheduleTargetDTO
Source§fn default() -> AdScheduleTargetDTO
fn default() -> AdScheduleTargetDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdScheduleTargetDTO
impl<'de> Deserialize<'de> for AdScheduleTargetDTO
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 AdScheduleTargetDTO
impl RefUnwindSafe for AdScheduleTargetDTO
impl Send for AdScheduleTargetDTO
impl Sync for AdScheduleTargetDTO
impl Unpin for AdScheduleTargetDTO
impl UnsafeUnpin for AdScheduleTargetDTO
impl UnwindSafe for AdScheduleTargetDTO
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