Struct todoist_rs::resource::Note [] [src]

pub struct Note {
    pub id: ID,
    pub user_id: ID,
    pub item_id: ID,
    pub project_id: ID,
    pub content: String,
    pub file_attachment: Attachment,
    pub uids_to_notify: Vec<ID>,
    pub is_deleted: IntBool,
    pub is_archived: IntBool,
    pub posting: Date,
}

A Todoist note

Fields

The note's unique ID

The ID of the note's poster

The ID of the item the note is attached to

The ID of the project this note is a part of

The note's text

the file attached to this note

List of user ids to notify

whether this note is marked as deleted

whether this note has been marked as archived

the date that this note was posted

Trait Implementations

impl Default for Note
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Note
[src]

[src]

Formats the value using the given formatter. Read more

impl Create for Note
[src]

[src]

impl Update for Note
[src]

[src]

impl Delete for Note
[src]

[src]

Auto Trait Implementations

impl Send for Note

impl Sync for Note