mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
32 lines
938 B
Go
32 lines
938 B
Go
package jiradata
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
// This Code is Generated by SlipScheme Project:
|
|
// https://github.com/coryb/slipscheme
|
|
//
|
|
// Generated with command:
|
|
// slipscheme -pkg jiradata -dir data schemas/WorklogWithPagination.json
|
|
/////////////////////////////////////////////////////////////////////////
|
|
// DO NOT EDIT //
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Visibility defined from schema:
|
|
// {
|
|
// "title": "Visibility",
|
|
// "type": "object",
|
|
// "properties": {
|
|
// "type": {
|
|
// "title": "type",
|
|
// "type": "string"
|
|
// },
|
|
// "value": {
|
|
// "title": "value",
|
|
// "type": "string"
|
|
// }
|
|
// }
|
|
// }
|
|
type Visibility struct {
|
|
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
|
Value string `json:"value,omitempty" yaml:"value,omitempty"`
|
|
}
|