Files
jira/jiradata/EntityProperty.go
T
2017-08-27 19:41:49 -07:00

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"`
}