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