pub struct UpdateNoteDTO {
pub user_id: Option<String>,
pub body: Option<String>,
pub title: Option<String>,
pub color: Option<String>,
pub pinned: Option<bool>,
}Available on crate feature
contacts only.Expand description
UpdateNoteDTO from the GoHighLevel OpenAPI spec.
Fields§
§user_id: Option<String>§body: Option<String>§title: Option<String>§color: Option<String>§pinned: Option<bool>Trait Implementations§
Source§impl Clone for UpdateNoteDTO
impl Clone for UpdateNoteDTO
Source§fn clone(&self) -> UpdateNoteDTO
fn clone(&self) -> UpdateNoteDTO
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 UpdateNoteDTO
impl Debug for UpdateNoteDTO
Source§impl Default for UpdateNoteDTO
impl Default for UpdateNoteDTO
Source§fn default() -> UpdateNoteDTO
fn default() -> UpdateNoteDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateNoteDTO
impl<'de> Deserialize<'de> for UpdateNoteDTO
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 UpdateNoteDTO
impl RefUnwindSafe for UpdateNoteDTO
impl Send for UpdateNoteDTO
impl Sync for UpdateNoteDTO
impl Unpin for UpdateNoteDTO
impl UnsafeUnpin for UpdateNoteDTO
impl UnwindSafe for UpdateNoteDTO
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