mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
33 lines
1.0 KiB
Go
33 lines
1.0 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/AuthParams.json
|
|
/////////////////////////////////////////////////////////////////////////
|
|
// DO NOT EDIT //
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// AuthParams defined from schema:
|
|
// {
|
|
// "title": "Auth Params",
|
|
// "id": "https://docs.atlassian.com/jira/REST/schema/auth-params#",
|
|
// "type": "object",
|
|
// "properties": {
|
|
// "password": {
|
|
// "title": "password",
|
|
// "type": "string"
|
|
// },
|
|
// "username": {
|
|
// "title": "username",
|
|
// "type": "string"
|
|
// }
|
|
// }
|
|
// }
|
|
type AuthParams struct {
|
|
Password string `json:"password,omitempty" yaml:"password,omitempty"`
|
|
Username string `json:"username,omitempty" yaml:"username,omitempty"`
|
|
}
|