// 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" ) // GetCharactersCharacterIDNotFoundBody get_characters_character_id_not_found // // Not found // swagger:model getCharactersCharacterIdNotFoundBody type GetCharactersCharacterIDNotFoundBody struct { // get_characters_character_id_404_not_found // // Not found message Error string `json:"error,omitempty"` } /* polymorph getCharactersCharacterIdNotFoundBody error false */ // Validate validates this get characters character Id not found body func (m *GetCharactersCharacterIDNotFoundBody) Validate(formats strfmt.Registry) error { var res []error if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } // MarshalBinary interface implementation func (m *GetCharactersCharacterIDNotFoundBody) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *GetCharactersCharacterIDNotFoundBody) UnmarshalBinary(b []byte) error { var res GetCharactersCharacterIDNotFoundBody if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }