Documentation
¶
Index ¶
- Constants
- type CreateReleaseDefectCommand
- type Defect
- func Create(client newclient.Client, spaceID string, command *CreateReleaseDefectCommand) (*Defect, error)
- func GetAll(client newclient.Client, spaceID string, releaseID string) ([]*Defect, error)
- func Resolve(client newclient.Client, spaceID string, command *ResolveReleaseDefectCommand) (*Defect, error)
- type DefectStatus
- type ResolveReleaseDefectCommand
Constants ¶
View Source
const ( DefectStatusResolved = "Resolved" DefectStatusUnresolved = "Unresolved" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateReleaseDefectCommand ¶
type CreateReleaseDefectCommand struct {
ReleaseID string `json:"ReleaseId"`
Description string `json:"Description"`
}
func NewCreateReleaseDefectCommand ¶
func NewCreateReleaseDefectCommand(releaseID string, description string) (*CreateReleaseDefectCommand, error)
type Defect ¶
type Defect struct {
Description string `json:"Description" validate:"required,notblank"`
Status DefectStatus `json:"Status,omitempty"`
resources.Resource
}
func Create ¶
func Create(client newclient.Client, spaceID string, command *CreateReleaseDefectCommand) (*Defect, error)
Create records a defect in a release
type DefectStatus ¶
type DefectStatus string
type ResolveReleaseDefectCommand ¶
type ResolveReleaseDefectCommand struct {
ReleaseID string `json:"ReleaseId"`
}
func NewResolveReleaseDefectCommand ¶
func NewResolveReleaseDefectCommand(releaseID string) (*ResolveReleaseDefectCommand, error)
Click to show internal directories.
Click to hide internal directories.