pub struct UpdateWidgetDTO {
pub version: Option<f64>,
pub chat_type: Option<String>,
pub name: Option<String>,
pub default: Option<bool>,
pub settings: Option<WidgetSettingsDTO>,
}Available on crate feature
chat-widget only.Expand description
UpdateWidgetDTO from the GoHighLevel OpenAPI spec.
Fields§
§version: Option<f64>Version
chat_type: Option<String>Chat type
Allowed values: liveChat, emailChat.
name: Option<String>Name
default: Option<bool>Default
settings: Option<WidgetSettingsDTO>Settings
Trait Implementations§
Source§impl Clone for UpdateWidgetDTO
impl Clone for UpdateWidgetDTO
Source§fn clone(&self) -> UpdateWidgetDTO
fn clone(&self) -> UpdateWidgetDTO
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 UpdateWidgetDTO
impl Debug for UpdateWidgetDTO
Source§impl Default for UpdateWidgetDTO
impl Default for UpdateWidgetDTO
Source§fn default() -> UpdateWidgetDTO
fn default() -> UpdateWidgetDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateWidgetDTO
impl<'de> Deserialize<'de> for UpdateWidgetDTO
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 UpdateWidgetDTO
impl RefUnwindSafe for UpdateWidgetDTO
impl Send for UpdateWidgetDTO
impl Sync for UpdateWidgetDTO
impl Unpin for UpdateWidgetDTO
impl UnsafeUnpin for UpdateWidgetDTO
impl UnwindSafe for UpdateWidgetDTO
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