Adding ProjectVersion

This commit is contained in:
David Arena
2019-02-04 18:36:11 +01:00
parent 514c1491c7
commit aaa72012a7
3 changed files with 37 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
package jiradata
type ProjectVersion struct {
Self string `json:"self,omitempty" yaml:"self,omitempty"`
ID string `json:"id,omitempty" yaml:"id,omitempty"`
Description string `json:"description,omitempty" yaml:"description,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
Archived bool `json:"archived,omitempty" yaml:archived,omitempty"`
Released bool `json:"released,omitempty" yaml:released,omitempty"`
ReleaseDate string `json:"releaseDate,omitempty" yaml:"releaseDate,omitempty"`
UserReleaseDate string `json:"userReleaseDate,omitempty" yaml:"userReleaseDate,omitempty"`
ProjectID int `json:"projectId,omitempty" yaml:"projectId,omitempty"`
}