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