pub struct RecurringTaskResponseDTO {
pub id: String,
pub title: String,
pub description: String,
pub location_id: String,
pub updated_at: String,
pub created_at: String,
pub rrule_options: CustomRRulesOptions,
pub total_occurrence: f64,
pub deleted: bool,
pub assigned_to: Option<String>,
pub contact_id: Option<String>,
}Available on crate feature
locations only.Expand description
RecurringTaskResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: StringRecurring Task Id Required by the API.
title: StringName of the task Required by the API.
description: StringDescription of the task Required by the API.
location_id: StringLocation Id Required by the API.
updated_at: StringUpdated At Required by the API.
created_at: StringCreated At Required by the API.
rrule_options: CustomRRulesOptionsRecurring rules Required by the API.
total_occurrence: f64Total Occurrence Required by the API.
deleted: boolDeleted Required by the API.
assigned_to: Option<String>Assigned To
contact_id: Option<String>Contact Id
Trait Implementations§
Source§impl Clone for RecurringTaskResponseDTO
impl Clone for RecurringTaskResponseDTO
Source§fn clone(&self) -> RecurringTaskResponseDTO
fn clone(&self) -> RecurringTaskResponseDTO
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 RecurringTaskResponseDTO
impl Debug for RecurringTaskResponseDTO
Source§impl Default for RecurringTaskResponseDTO
impl Default for RecurringTaskResponseDTO
Source§fn default() -> RecurringTaskResponseDTO
fn default() -> RecurringTaskResponseDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecurringTaskResponseDTO
impl<'de> Deserialize<'de> for RecurringTaskResponseDTO
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 RecurringTaskResponseDTO
impl RefUnwindSafe for RecurringTaskResponseDTO
impl Send for RecurringTaskResponseDTO
impl Sync for RecurringTaskResponseDTO
impl Unpin for RecurringTaskResponseDTO
impl UnsafeUnpin for RecurringTaskResponseDTO
impl UnwindSafe for RecurringTaskResponseDTO
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