pub struct WrappedFetchQueueByIdResponseDTO {
pub success: Option<bool>,
pub status_code: Option<f64>,
pub results: Option<FetchQueueByIdResponseDTO>,
pub trace_id: Option<String>,
}Available on crate feature
social-planner only.Expand description
WrappedFetchQueueByIdResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§success: Option<bool>Required by the API. (Optional here so responses that omit it still parse.)
status_code: Option<f64>Required by the API. (Optional here so responses that omit it still parse.)
results: Option<FetchQueueByIdResponseDTO>Required by the API. (Optional here so responses that omit it still parse.)
trace_id: Option<String>Trait Implementations§
Source§impl Clone for WrappedFetchQueueByIdResponseDTO
impl Clone for WrappedFetchQueueByIdResponseDTO
Source§fn clone(&self) -> WrappedFetchQueueByIdResponseDTO
fn clone(&self) -> WrappedFetchQueueByIdResponseDTO
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 Default for WrappedFetchQueueByIdResponseDTO
impl Default for WrappedFetchQueueByIdResponseDTO
Source§fn default() -> WrappedFetchQueueByIdResponseDTO
fn default() -> WrappedFetchQueueByIdResponseDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WrappedFetchQueueByIdResponseDTO
impl<'de> Deserialize<'de> for WrappedFetchQueueByIdResponseDTO
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 WrappedFetchQueueByIdResponseDTO
impl RefUnwindSafe for WrappedFetchQueueByIdResponseDTO
impl Send for WrappedFetchQueueByIdResponseDTO
impl Sync for WrappedFetchQueueByIdResponseDTO
impl Unpin for WrappedFetchQueueByIdResponseDTO
impl UnsafeUnpin for WrappedFetchQueueByIdResponseDTO
impl UnwindSafe for WrappedFetchQueueByIdResponseDTO
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