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