pub struct DndSettingSchema {
pub status: Option<String>,
pub message: Option<String>,
pub code: Option<String>,
}Available on crate feature
contacts only.Expand description
DndSettingSchema from the GoHighLevel OpenAPI spec.
Fields§
§status: Option<String>Allowed values: active, inactive, permanent.
Required by the API.
(Optional here so responses that omit it still parse.)
message: Option<String>§code: Option<String>Trait Implementations§
Source§impl Clone for DndSettingSchema
impl Clone for DndSettingSchema
Source§fn clone(&self) -> DndSettingSchema
fn clone(&self) -> DndSettingSchema
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 DndSettingSchema
impl Debug for DndSettingSchema
Source§impl Default for DndSettingSchema
impl Default for DndSettingSchema
Source§fn default() -> DndSettingSchema
fn default() -> DndSettingSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DndSettingSchema
impl<'de> Deserialize<'de> for DndSettingSchema
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 DndSettingSchema
impl RefUnwindSafe for DndSettingSchema
impl Send for DndSettingSchema
impl Sync for DndSettingSchema
impl Unpin for DndSettingSchema
impl UnsafeUnpin for DndSettingSchema
impl UnwindSafe for DndSettingSchema
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