mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
61 lines
1.8 KiB
Go
61 lines
1.8 KiB
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 //
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// AuthSuccess defined from schema:
|
|
// {
|
|
// "title": "Auth Success",
|
|
// "id": "https://docs.atlassian.com/jira/REST/schema/auth-success#",
|
|
// "type": "object",
|
|
// "properties": {
|
|
// "loginInfo": {
|
|
// "title": "Login Info",
|
|
// "type": "object",
|
|
// "properties": {
|
|
// "failedLoginCount": {
|
|
// "title": "failedLoginCount",
|
|
// "type": "integer"
|
|
// },
|
|
// "lastFailedLoginTime": {
|
|
// "title": "lastFailedLoginTime",
|
|
// "type": "string"
|
|
// },
|
|
// "loginCount": {
|
|
// "title": "loginCount",
|
|
// "type": "integer"
|
|
// },
|
|
// "previousLoginTime": {
|
|
// "title": "previousLoginTime",
|
|
// "type": "string"
|
|
// }
|
|
// }
|
|
// },
|
|
// "session": {
|
|
// "title": "Session Info",
|
|
// "type": "object",
|
|
// "properties": {
|
|
// "name": {
|
|
// "title": "name",
|
|
// "type": "string"
|
|
// },
|
|
// "value": {
|
|
// "title": "value",
|
|
// "type": "string"
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
type AuthSuccess struct {
|
|
LoginInfo *LoginInfo `json:"loginInfo,omitempty" yaml:"loginInfo,omitempty"`
|
|
Session *SessionInfo `json:"session,omitempty" yaml:"session,omitempty"`
|
|
}
|