pub struct NotesDTO {
pub user_id: Option<String>,
pub body: String,
pub title: Option<String>,
pub color: Option<String>,
pub pinned: Option<bool>,
}Available on crate feature
contacts only.Expand description
NotesDTO from the GoHighLevel OpenAPI spec.
Fields§
§user_id: Option<String>User Id of the note author
body: StringBody content of the note Required by the API.
title: Option<String>Title of the note
color: Option<String>Hex color code for the note
pinned: Option<bool>Whether the note is pinned
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NotesDTO
impl<'de> Deserialize<'de> for NotesDTO
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 NotesDTO
impl RefUnwindSafe for NotesDTO
impl Send for NotesDTO
impl Sync for NotesDTO
impl Unpin for NotesDTO
impl UnsafeUnpin for NotesDTO
impl UnwindSafe for NotesDTO
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