pub struct GetNoteSchema {
pub id: Option<String>,
pub body: Option<String>,
pub user_id: Option<String>,
pub date_added: Option<String>,
pub contact_id: Option<String>,
pub title: Option<String>,
pub color: Option<String>,
pub pinned: Option<bool>,
}Available on crate feature
contacts only.Expand description
GetNoteSchema from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Unique identifier of the note
body: Option<String>Body content of the note
user_id: Option<String>User Id of the note author
date_added: Option<String>Date the note was added (ISO 8601 format)
contact_id: Option<String>Contact Id associated with the note
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 Clone for GetNoteSchema
impl Clone for GetNoteSchema
Source§fn clone(&self) -> GetNoteSchema
fn clone(&self) -> GetNoteSchema
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 GetNoteSchema
impl Debug for GetNoteSchema
Source§impl Default for GetNoteSchema
impl Default for GetNoteSchema
Source§fn default() -> GetNoteSchema
fn default() -> GetNoteSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetNoteSchema
impl<'de> Deserialize<'de> for GetNoteSchema
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 GetNoteSchema
impl RefUnwindSafe for GetNoteSchema
impl Send for GetNoteSchema
impl Sync for GetNoteSchema
impl Unpin for GetNoteSchema
impl UnsafeUnpin for GetNoteSchema
impl UnwindSafe for GetNoteSchema
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