package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: Jun 4, 2025
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Label struct {
*sync.Label
IsShared bool `json:"is_shared"`
Count int `json:"count"`
}
type LabelDeleteArgs struct {
Name string `json:"name"`
}
type ProjectListArgs struct {
All bool `json:"all"`
OnlyArchived bool `json:"only_archived"`
}
type SectionListArgs struct {
ProjectID string `json:"project_id"`
All bool `json:"all"`
OnlyArchived bool `json:"only_archived"`
}
type SubTaskStatus struct {
Total int `json:"total"`
Completed int `json:"completed"`
}
type Task struct {
*sync.Task
ProjectName string `json:"project_name"`
ProjectColor sync.Color `json:"project_color"`
SectionName string `json:"section_name"`
SubTasks []*Task `json:"sub_tasks"`
SubTaskStatus SubTaskStatus `json:"sub_task_status"`
Labels []*Label `json:"labels"`
}
type TaskListArgs struct {
Tree bool `json:"tree"`
ProjectID string `json:"project_id"`
ParentID string `json:"parent_id"`
All bool `json:"completed"`
OnlyCompleted bool `json:"only_completed"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.