pub struct GetCommentsResponse200DataInner {
pub uuid: Option<Uuid>,
pub active_flag: Option<bool>,
pub add_time: Option<String>,
pub update_time: Option<String>,
pub content: Option<String>,
pub object_id: Option<String>,
pub object_type: Option<String>,
pub user_id: Option<i32>,
pub updater_id: Option<i32>,
pub company_id: Option<i32>,
}
Fields§
§uuid: Option<Uuid>
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
update_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.
object_id: Option<String>
The ID of the object that the comment is attached to, will be the id of the note
object_type: Option<String>
The type of object that the comment is attached to, will be "note"
user_id: Option<i32>
The ID of the user who created the comment
updater_id: Option<i32>
The ID of the user who last updated the comment
company_id: Option<i32>
The ID of the company
Implementations§
Trait Implementations§
Source§impl Clone for GetCommentsResponse200DataInner
impl Clone for GetCommentsResponse200DataInner
Source§fn clone(&self) -> GetCommentsResponse200DataInner
fn clone(&self) -> GetCommentsResponse200DataInner
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<'de> Deserialize<'de> for GetCommentsResponse200DataInner
impl<'de> Deserialize<'de> for GetCommentsResponse200DataInner
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 GetCommentsResponse200DataInner
impl PartialEq for GetCommentsResponse200DataInner
Source§fn eq(&self, other: &GetCommentsResponse200DataInner) -> bool
fn eq(&self, other: &GetCommentsResponse200DataInner) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCommentsResponse200DataInner
Auto Trait Implementations§
impl Freeze for GetCommentsResponse200DataInner
impl RefUnwindSafe for GetCommentsResponse200DataInner
impl Send for GetCommentsResponse200DataInner
impl Sync for GetCommentsResponse200DataInner
impl Unpin for GetCommentsResponse200DataInner
impl UnwindSafe for GetCommentsResponse200DataInner
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