Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Error ¶
type Error struct {
// Error code
// Required: true
Code *int64 `json:"code"`
// A detail description about the error message.
//
Description string `json:"description,omitempty"`
// If there are more than one error list them out.
// For example, list out validation errors by each field.
//
Error []*ErrorListItem `json:"error"`
// Error message.
// Required: true
Message *string `json:"message"`
// Preferably an url with more details about the error.
//
MoreInfo string `json:"moreInfo,omitempty"`
}
Error Error object returned with 4XX HTTP status
swagger:model Error
func (*Error) MarshalBinary ¶
MarshalBinary interface implementation
func (*Error) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type ErrorListItem ¶
type ErrorListItem struct {
// Error code
// Required: true
Code *string `json:"code"`
// Description about individual errors occurred
//
// Required: true
Message *string `json:"message"`
}
ErrorListItem Description of individual errors that may have occurred during a request.
swagger:model ErrorListItem
func (*ErrorListItem) MarshalBinary ¶
func (m *ErrorListItem) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ErrorListItem) UnmarshalBinary ¶
func (m *ErrorListItem) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type Principal ¶
type Principal struct {
// tenant
Tenant string `json:"tenant,omitempty"`
// token
Token string `json:"token,omitempty"`
// username
Username string `json:"username,omitempty"`
}
Principal principal
swagger:model Principal
func (*Principal) MarshalBinary ¶
MarshalBinary interface implementation
func (*Principal) UnmarshalBinary ¶
UnmarshalBinary interface implementation
Click to show internal directories.
Click to hide internal directories.