Documentation
¶
Overview ¶
Package task contains types and engines to work with tasks.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Ticket ¶
type Ticket struct {
ID string `yaml:"id"`
ParentID string `yaml:"parent_id"`
URL string `yaml:"url"`
Name string `yaml:"name"`
Body string `yaml:"body"`
ClosedAt time.Time `yaml:"closed_at"`
Author User `yaml:"author"`
Assignee User `yaml:"assignee"`
Type Type `yaml:"type"`
TypeRaw string `yaml:"type_raw"` // save raw type in case if user wants to distinguish different raw values
Flagged bool `yaml:"flagged"`
Watchers []User `yaml:"watchers"`
WatchesCount int `yaml:"watches_count"`
}
Ticket represents a single task in task tracker.
Click to show internal directories.
Click to hide internal directories.