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