Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is a http client for Todoist API
type Due ¶
type Due struct { Date string `json:"date"` IsRecurring bool `json:"is_recurring"` Datetime time.Time `json:"datetime"` String string `json:"string"` Timezone string `json:"timezone"` }
Due represents schedule configuration
type Task ¶
type Task struct { CreatorID string `json:"creator_id"` CreatedAt time.Time `json:"created_at"` AssigneeID string `json:"assignee_id"` AssignerID string `json:"assigner_id"` CommentCount int `json:"comment_count"` IsCompleted bool `json:"is_completed"` Content string `json:"content"` Description string `json:"description"` Due *Due `json:"due"` Duration *Duration `json:"duration"` ID string `json:"id"` Labels []string `json:"labels"` Order int `json:"order"` Priority int `json:"priority"` ProjectID string `json:"project_id"` SectionID string `json:"section_id"` ParentID string `json:"parent_id"` URL string `json:"url"` }
Task is a representation in Todoist
Click to show internal directories.
Click to hide internal directories.