Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Project ¶
type Project struct {
ID *string `json:"id"`
ParentID *string `json:"parent_id"`
Order *int `json:"order"`
Color *string `json:"color"`
Name *string `json:"name"`
CommentCount *int `json:"comment_count"`
IsFavorite *bool `json:"is_favorite"`
IsInboxProject *bool `json:"is_inbox_project"`
IsTeamInbox *bool `json:"is_team_inbox"`
URL *string `json:"url"`
ViewStyle *string `json:"view_style"`
}
func (*Project) TableHeader ¶
type Section ¶ added in v0.4.0
type Section struct {
ID *string `json:"id"`
ProjectID *string `json:"project_id"`
Order *int `json:"order"`
Name *string `json:"name"`
}
func (*Section) TableHeader ¶ added in v0.4.0
type Sections ¶ added in v0.4.0
type Sections []*Section
func (Sections) TableHeader ¶ added in v0.4.0
type Task ¶ added in v0.5.0
type Task struct {
ID *string `json:"id"`
AssignerID *string `json:"assigner_id"`
AssigneeID *string `json:"assignee_id"`
ProjectID *string `json:"project_id"`
SectionID *string `json:"section_id"`
ParentID *string `json:"parent_id"`
Order *int `json:"order"`
Content *string `json:"content"`
Description *string `json:"description"`
IsCompleted *bool `json:"is_completed"`
Labels []string `json:"labels"`
Priority *int `json:"priority"`
CommentCount *int `json:"comment_count"`
CreatorID *string `json:"creator_id"`
CreatedAt *string `json:"created_at"`
Due *TaskDue `json:"due"`
URL *string `json:"url"`
}
func (*Task) TableHeader ¶ added in v0.5.0
Click to show internal directories.
Click to hide internal directories.