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

32 lines
947 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/AuthSuccess.json
/////////////////////////////////////////////////////////////////////////
// DO NOT EDIT //
/////////////////////////////////////////////////////////////////////////
// SessionInfo defined from schema:
// {
// "title": "Session Info",
// "type": "object",
// "properties": {
// "name": {
// "title": "name",
// "type": "string"
// },
// "value": {
// "title": "value",
// "type": "string"
// }
// }
// }
type SessionInfo struct {
Name string `json:"name,omitempty" yaml:"name,omitempty"`
Value string `json:"value,omitempty" yaml:"value,omitempty"`
}