ticket

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 17, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Board

type Board struct {
	base.DomainEntity
	Name string
	Url  string
}

type Changelog

type Changelog struct {
	base.DomainEntity

	// collected fields
	IssueOriginKey string `gorm:"index"`
	AuthorId       string
	AuthorName     string
	FieldId        string
	FieldName      string
	From           string
	To             string
	CreatedDate    time.Time
}

type Issue

type Issue struct {
	base.DomainEntity

	// collected fields
	BoardOriginKey           string `gorm:"index"`
	Url                      string
	Key                      string
	Title                    string
	Summary                  string
	EpicKey                  string
	Type                     string
	Status                   string
	StoryPoint               uint
	OriginalEstimateMinutes  int64 // user input?
	AggregateEstimateMinutes int64 // sum up of all subtasks?
	RemainingEstimateMinutes int64 // could it be negative value?
	CreatorOriginKey         string
	AssigneeOriginKey        string
	ResolutionDate           sql.NullTime
	Priority                 string // not sure how to deal with it yet, copy the name for now
	ParentOriginKey          string
	SprintOriginKey          string
	CreatedDate              time.Time
	UpdatedDate              time.Time
	SpentMinutes             int64
	LeadTimeMinutes          uint
}

type Sprint added in v0.4.0

type Sprint struct {
	base.DomainEntity

	// collected fields
	BoardOriginKey string `gorm:"index"`
	Url            string
	State          string
	Name           string
	StartDate      *time.Time
	EndDate        *time.Time
	CompleteDate   *time.Time
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL