56 lines
1.4 KiB
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"
|
|
)
|
|
|
|
// GetAlliancesAllianceIDIconsNotFoundBody get_alliances_alliance_id_icons_not_found
|
|
//
|
|
// No image server for this datasource
|
|
// swagger:model getAlliancesAllianceIdIconsNotFoundBody
|
|
|
|
type GetAlliancesAllianceIDIconsNotFoundBody struct {
|
|
|
|
// get_alliances_alliance_id_icons_error
|
|
//
|
|
// error message
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
/* polymorph getAlliancesAllianceIdIconsNotFoundBody error false */
|
|
|
|
// Validate validates this get alliances alliance Id icons not found body
|
|
func (m *GetAlliancesAllianceIDIconsNotFoundBody) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *GetAlliancesAllianceIDIconsNotFoundBody) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *GetAlliancesAllianceIDIconsNotFoundBody) UnmarshalBinary(b []byte) error {
|
|
var res GetAlliancesAllianceIDIconsNotFoundBody
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|