Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BacklogItem ¶
type BacklogItem struct { ID ID `json:"id"` Type Type `json:"type"` Summary string `json:"summary"` StoryPoint *int `json:"storyPoint"` }
func (BacklogItem) Validate ¶
func (bi BacklogItem) Validate() error
type BacklogItemList ¶
type BacklogItemList []BacklogItem
type BacklogItemNode ¶
type BacklogItemNode struct { BacklogItem subtask.SubTaskNodeList }
type BacklogItemNodeList ¶
type BacklogItemNodeList []BacklogItemNode
type BacklogItemQuery ¶
type BacklogItemQuery struct { }
type CreateBacklogItemParam ¶
func (CreateBacklogItemParam) New ¶
func (p CreateBacklogItemParam) New() (*BacklogItem, error)
type Repository ¶
type Repository interface { Create(ctx context.Context, item *BacklogItem) error GetOne(ctx context.Context, id ID) (*BacklogItem, error) }
type StoryPoint ¶
type StoryPoint int
Click to show internal directories.
Click to hide internal directories.