campaigner/model/campaign.go

12 lines
352 B
Go
Raw Normal View History

2020-02-29 00:49:55 +01:00
package model
// ToDo: add key-value extra params as a map to allow for customfield_whatever = team
2020-02-29 00:49:55 +01:00
type Campaign struct {
Url string `json:"url"`
Project string `json:"project"`
Epic string `json:"epic"`
Summary string `json:"summary"`
Template string `json:"template"`
Tickets []*Ticket `json:"tickets,omitempty"`
2020-02-29 00:49:55 +01:00
}