pub struct UpdateCustomSubtypeDto {
pub name: Option<String>,
pub description: Option<String>,
pub archived: Option<bool>,
pub resubscription_legal_form_id: Option<String>,
}Available on crate feature
conversations only.Expand description
UpdateCustomSubtypeDto from the GoHighLevel OpenAPI spec.
Fields§
§name: Option<String>Name of the custom subtype (max 100 characters)
description: Option<String>Description of the custom subtype (max 100 characters)
archived: Option<bool>Whether the custom subtype is archived
resubscription_legal_form_id: Option<String>Resubscription legal form ID (optional when archiving)
Trait Implementations§
Source§impl Clone for UpdateCustomSubtypeDto
impl Clone for UpdateCustomSubtypeDto
Source§fn clone(&self) -> UpdateCustomSubtypeDto
fn clone(&self) -> UpdateCustomSubtypeDto
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 UpdateCustomSubtypeDto
impl Debug for UpdateCustomSubtypeDto
Source§impl Default for UpdateCustomSubtypeDto
impl Default for UpdateCustomSubtypeDto
Source§fn default() -> UpdateCustomSubtypeDto
fn default() -> UpdateCustomSubtypeDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateCustomSubtypeDto
impl<'de> Deserialize<'de> for UpdateCustomSubtypeDto
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 UpdateCustomSubtypeDto
impl RefUnwindSafe for UpdateCustomSubtypeDto
impl Send for UpdateCustomSubtypeDto
impl Sync for UpdateCustomSubtypeDto
impl Unpin for UpdateCustomSubtypeDto
impl UnsafeUnpin for UpdateCustomSubtypeDto
impl UnwindSafe for UpdateCustomSubtypeDto
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