Struct mailchimp_api::types::Note
source · pub struct Note {
pub activity_type: Option<NoteActivityType>,
pub avatar_url: String,
pub created_at_timestamp: Option<DateTime<Utc>>,
pub created_by: String,
pub note_id: String,
pub note_text: String,
pub updated_at_timestamp: Option<DateTime<Utc>>,
}
Expand description
Activity feed item representing a note on the contact record.
Fields
activity_type: Option<NoteActivityType>
Activity feed item representing a note on the contact record.
avatar_url: String
Activity feed item representing a note on the contact record.
created_at_timestamp: Option<DateTime<Utc>>
Activity feed item representing a note on the contact record.
created_by: String
Activity feed item representing a note on the contact record.
note_id: String
Activity feed item representing a note on the contact record.
note_text: String
Activity feed item representing a note on the contact record.
updated_at_timestamp: Option<DateTime<Utc>>
Activity feed item representing a note on the contact record.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Note
impl<'de> Deserialize<'de> for Note
sourcefn 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
sourceimpl JsonSchema for Note
impl JsonSchema for Note
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for Note
Auto Trait Implementations
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more