12 lines
365 B
Go
12 lines
365 B
Go
package activity
|
|
|
|
// Suggestion represents a suggested worklog entry derived from today's activity.
|
|
type Suggestion struct {
|
|
NodeID string `json:"nodeId"`
|
|
NodeTitle string `json:"nodeTitle"`
|
|
Summary string `json:"summary"`
|
|
SuggestedMin int `json:"suggestedMin"`
|
|
EventCount int `json:"eventCount"`
|
|
NodeKind string `json:"nodeKind"`
|
|
}
|