Struct todoist_rs::resource::Reminder [] [src]

pub struct Reminder {
    pub id: ID,
    pub notify_uid: ID,
    pub item_id: ID,
    pub service: NotificationService,
    pub typ: NotificationType,
    pub date_string: Option<String>,
    pub date_lang: Language,
    pub due_date_utc: Option<Date>,
    pub mm_offset: Option<isize>,
    pub name: Option<String>,
    pub loc_lat: Option<isize>,
    pub loc_long: Option<isize>,
    pub loc_trigger: Option<NotificationTrigger>,
    pub radius: Option<isize>,
    pub is_deleted: IntBool,
}

A Todoist reminder

Fields

The reminder's unique ID

The user who should be notified

The item this reminder is attached to

The service used to notify the user.

The reminder's type

When this reminder should be triggered, in free form text

the language of date_string

the date this reminder should be triggered, in the date::FORMAT format

the offset in minutes to when the reminder should be triggered

the location's name

the location's latitude

the location longitude

when the reminder should be triggered at the location

the radius around the location that the reminder can be triggered in meters

Trait Implementations

impl Default for Reminder
[src]

[src]

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

impl Debug for Reminder
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Reminder

impl Sync for Reminder