| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // Code generated by go-swagger; DO NOT EDIT.
- package models
- // This file was generated by the swagger tool.
- // Editing this file might prove futile when you re-run the swagger generate command
- import (
- "context"
- "github.com/go-openapi/errors"
- "github.com/go-openapi/strfmt"
- "github.com/go-openapi/swag"
- "github.com/go-openapi/validate"
- )
- // Error error
- //
- // swagger:model error
- type Error struct {
- // code
- Code int64 `json:"code,omitempty"`
- // message
- // Required: true
- Message *string `json:"message"`
- }
- // Validate validates this error
- func (m *Error) Validate(formats strfmt.Registry) error {
- var res []error
- if err := m.validateMessage(formats); err != nil {
- res = append(res, err)
- }
- if len(res) > 0 {
- return errors.CompositeValidationError(res...)
- }
- return nil
- }
- func (m *Error) validateMessage(formats strfmt.Registry) error {
- if err := validate.Required("message", "body", m.Message); err != nil {
- return err
- }
- return nil
- }
- // ContextValidate validates this error based on context it is used
- func (m *Error) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
- return nil
- }
- // MarshalBinary interface implementation
- func (m *Error) MarshalBinary() ([]byte, error) {
- if m == nil {
- return nil, nil
- }
- return swag.WriteJSON(m)
- }
- // UnmarshalBinary interface implementation
- func (m *Error) UnmarshalBinary(b []byte) error {
- var res Error
- if err := swag.ReadJSON(b, &res); err != nil {
- return err
- }
- *m = res
- return nil
- }
|