mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-28 00:38:29 +02:00
Adding ProjectVersion
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
Reference in New Issue
Block a user