Files
2020-03-02 00:34:43 +11:00

22 lines
415 B
Go

package model
// Ticket represents a ticket model
type Ticket struct {
ID string
URL string
ExternalID string
CreatedAt string
Type string
Subject string
Description string
Priority string
Status string
Submitter *User
Assignee *User
Organization *Organisation
Tags []string
HasIncidents bool
DueAt string
Via string
}