Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ActivityOutput ¶
type ActivityOutput struct {
Project string `json:"project"`
Activity []ActivityRecord `json:"activity"`
}
ActivityOutput represents the JSON output format
type ActivityRecord ¶
type ActivityRecord struct {
ID int64 `json:"id"`
Type string `json:"type"`
Title string `json:"title"`
Status string `json:"status"`
Creator string `json:"creator"`
CreatorEmail string `json:"creator_email,omitempty"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
URL string `json:"url"`
ParentTitle string `json:"parent_title,omitempty"`
ParentType string `json:"parent_type,omitempty"`
}
ActivityRecord represents a single activity item for JSON output
Click to show internal directories.
Click to hide internal directories.