mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-28 00:38:29 +02:00
rewrite checkpoint
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
package jiradata
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
// This Code is Generated by SlipScheme Project:
|
||||
// https://github.com/coryb/slipscheme
|
||||
//
|
||||
// Generated with command:
|
||||
// slipscheme -pkg jiradata -dir data schemas/ErrorCollection.json
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
// DO NOT EDIT //
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// ErrorCollection defined from schema:
|
||||
// {
|
||||
// "title": "Error Collection",
|
||||
// "id": "https://docs.atlassian.com/jira/REST/schema/error-collection#",
|
||||
// "type": "object",
|
||||
// "properties": {
|
||||
// "errorMessages": {
|
||||
// "title": "errorMessages",
|
||||
// "type": "array",
|
||||
// "items": {
|
||||
// "type": "string"
|
||||
// }
|
||||
// },
|
||||
// "errors": {
|
||||
// "title": "errors",
|
||||
// "type": "object",
|
||||
// "patternProperties": {
|
||||
// ".+": {
|
||||
// "type": "string"
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
// "status": {
|
||||
// "title": "status",
|
||||
// "type": "integer"
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
type ErrorCollection struct {
|
||||
ErrorMessages ErrorMessages `json:"errorMessages,omitempty" yaml:"errorMessages,omitempty"`
|
||||
Errors map[string]string `json:"errors,omitempty" yaml:"errors,omitempty"`
|
||||
Status int `json:"status,omitempty" yaml:"status,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user