This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
eve-goclient/models/get_wars_war_id_unprocessable_entity_body.go

56 lines
1.4 KiB
Go

// 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 (
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
)
// GetWarsWarIDUnprocessableEntityBody get_wars_war_id_unprocessable_entity
//
// Unprocessable entity
// swagger:model getWarsWarIdUnprocessableEntityBody
type GetWarsWarIDUnprocessableEntityBody struct {
// get_wars_war_id_422_unprocessable_entity
//
// Unprocessable entity message
Error string `json:"error,omitempty"`
}
/* polymorph getWarsWarIdUnprocessableEntityBody error false */
// Validate validates this get wars war Id unprocessable entity body
func (m *GetWarsWarIDUnprocessableEntityBody) Validate(formats strfmt.Registry) error {
var res []error
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
// MarshalBinary interface implementation
func (m *GetWarsWarIDUnprocessableEntityBody) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *GetWarsWarIDUnprocessableEntityBody) UnmarshalBinary(b []byte) error {
var res GetWarsWarIDUnprocessableEntityBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}