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