-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathPriority.go
41 lines (39 loc) · 1.27 KB
/
Priority.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package jiradata
/////////////////////////////////////////////////////////////////////////
// This Code is Generated by SlipScheme Project:
// https://github.com/coryb/slipscheme
//
// Generated with command:
// slipscheme -dir jiradata -pkg jiradata -overwrite schemas/LinkIssueRequest.json
/////////////////////////////////////////////////////////////////////////
// DO NOT EDIT //
/////////////////////////////////////////////////////////////////////////
// Priority defined from schema:
// {
// "title": "Priority",
// "type": "object",
// "properties": {
// "description": {
// "type": "string"
// },
// "iconUrl": {
// "type": "string"
// },
// "id": {
// "type": "string"
// },
// "name": {
// "type": "string"
// },
// "statusColor": {
// "type": "string"
// }
// }
// }
type Priority struct {
Description string `json:"description,omitempty" yaml:"description,omitempty"`
IconURL string `json:"iconUrl,omitempty" yaml:"iconUrl,omitempty"`
ID string `json:"id,omitempty" yaml:"id,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
StatusColor string `json:"statusColor,omitempty" yaml:"statusColor,omitempty"`
}