pub struct GetNotesResponse200DataInner {Show 18 fields
pub id: Option<i32>,
pub active_flag: Option<bool>,
pub add_time: Option<String>,
pub content: Option<String>,
pub deal: Option<Box<GetNotesResponse200DataInnerDeal>>,
pub lead_id: Option<Uuid>,
pub deal_id: Option<i32>,
pub last_update_user_id: Option<i32>,
pub org_id: Option<i32>,
pub organization: Option<Box<GetNotesResponse200DataInnerOrganization>>,
pub person: Option<Box<GetNotesResponse200DataInnerPerson>>,
pub person_id: Option<i32>,
pub pinned_to_deal_flag: Option<bool>,
pub pinned_to_organization_flag: Option<bool>,
pub pinned_to_person_flag: Option<bool>,
pub update_time: Option<String>,
pub user: Option<Box<GetNotesResponse200DataInnerUser>>,
pub user_id: Option<i32>,
}
Fields§
§id: Option<i32>
The ID of the note
active_flag: Option<bool>
Whether the note is active or deleted
add_time: Option<String>
The creation date and time of the note
content: Option<String>
The content of the note in HTML format. Subject to sanitization on the back-end.
deal: Option<Box<GetNotesResponse200DataInnerDeal>>
§lead_id: Option<Uuid>
The ID of the lead the note is attached to
deal_id: Option<i32>
The ID of the deal the note is attached to
last_update_user_id: Option<i32>
The ID of the user who last updated the note
org_id: Option<i32>
The ID of the organization the note is attached to
organization: Option<Box<GetNotesResponse200DataInnerOrganization>>
§person: Option<Box<GetNotesResponse200DataInnerPerson>>
§person_id: Option<i32>
The ID of the person the note is attached to
pinned_to_deal_flag: Option<bool>
If true, the results are filtered by note to deal pinning state
pinned_to_organization_flag: Option<bool>
If true, the results are filtered by note to organization pinning state
pinned_to_person_flag: Option<bool>
If true, the results are filtered by note to person pinning state
update_time: Option<String>
The last updated date and time of the note
user: Option<Box<GetNotesResponse200DataInnerUser>>
§user_id: Option<i32>
The ID of the note creator
Implementations§
Source§impl GetNotesResponse200DataInner
impl GetNotesResponse200DataInner
pub fn new() -> GetNotesResponse200DataInner
Trait Implementations§
Source§impl Clone for GetNotesResponse200DataInner
impl Clone for GetNotesResponse200DataInner
Source§fn clone(&self) -> GetNotesResponse200DataInner
fn clone(&self) -> GetNotesResponse200DataInner
Returns a duplicate of the value. Read more
1.0.0 · 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 GetNotesResponse200DataInner
impl Debug for GetNotesResponse200DataInner
Source§impl<'de> Deserialize<'de> for GetNotesResponse200DataInner
impl<'de> Deserialize<'de> for GetNotesResponse200DataInner
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
Source§impl PartialEq for GetNotesResponse200DataInner
impl PartialEq for GetNotesResponse200DataInner
Source§fn eq(&self, other: &GetNotesResponse200DataInner) -> bool
fn eq(&self, other: &GetNotesResponse200DataInner) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetNotesResponse200DataInner
Auto Trait Implementations§
impl Freeze for GetNotesResponse200DataInner
impl RefUnwindSafe for GetNotesResponse200DataInner
impl Send for GetNotesResponse200DataInner
impl Sync for GetNotesResponse200DataInner
impl Unpin for GetNotesResponse200DataInner
impl UnwindSafe for GetNotesResponse200DataInner
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