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/client/market/get_markets_prices_responses.go

239 lines
6 KiB
Go

package market
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"io"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
strfmt "github.com/go-openapi/strfmt"
)
// GetMarketsPricesReader is a Reader for the GetMarketsPrices structure.
type GetMarketsPricesReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetMarketsPricesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetMarketsPricesOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 500:
result := NewGetMarketsPricesInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("unknown error", response, response.Code())
}
}
// NewGetMarketsPricesOK creates a GetMarketsPricesOK with default headers values
func NewGetMarketsPricesOK() *GetMarketsPricesOK {
return &GetMarketsPricesOK{}
}
/*GetMarketsPricesOK handles this case with default header values.
A list of prices
*/
type GetMarketsPricesOK struct {
/*The caching mechanism used
*/
CacheControl string
/*RFC7231 formatted datetime string
*/
Expires string
/*RFC7231 formatted datetime string
*/
LastModified string
Payload []*GetMarketsPricesOKBodyItems0
}
func (o *GetMarketsPricesOK) Error() string {
return fmt.Sprintf("[GET /markets/prices/][%d] getMarketsPricesOK %+v", 200, o.Payload)
}
func (o *GetMarketsPricesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// response header Cache-Control
o.CacheControl = response.GetHeader("Cache-Control")
// response header Expires
o.Expires = response.GetHeader("Expires")
// response header Last-Modified
o.LastModified = response.GetHeader("Last-Modified")
// response payload
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetMarketsPricesInternalServerError creates a GetMarketsPricesInternalServerError with default headers values
func NewGetMarketsPricesInternalServerError() *GetMarketsPricesInternalServerError {
return &GetMarketsPricesInternalServerError{}
}
/*GetMarketsPricesInternalServerError handles this case with default header values.
Internal server error
*/
type GetMarketsPricesInternalServerError struct {
Payload GetMarketsPricesInternalServerErrorBody
}
func (o *GetMarketsPricesInternalServerError) Error() string {
return fmt.Sprintf("[GET /markets/prices/][%d] getMarketsPricesInternalServerError %+v", 500, o.Payload)
}
func (o *GetMarketsPricesInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// response payload
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
/*GetMarketsPricesInternalServerErrorBody get_markets_prices_internal_server_error
//
// Internal server error
swagger:model GetMarketsPricesInternalServerErrorBody
*/
type GetMarketsPricesInternalServerErrorBody struct {
// get_markets_prices_500_internal_server_error
//
// Internal server error message
// Required: true
Error *string `json:"error"`
}
// Validate validates this get markets prices internal server error body
func (o *GetMarketsPricesInternalServerErrorBody) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateError(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (o *GetMarketsPricesInternalServerErrorBody) validateError(formats strfmt.Registry) error {
if err := validate.Required("getMarketsPricesInternalServerError"+"."+"error", "body", o.Error); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (o *GetMarketsPricesInternalServerErrorBody) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *GetMarketsPricesInternalServerErrorBody) UnmarshalBinary(b []byte) error {
var res GetMarketsPricesInternalServerErrorBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*GetMarketsPricesOKBodyItems0 get_markets_prices_200_ok
//
// 200 ok object
swagger:model GetMarketsPricesOKBodyItems0
*/
type GetMarketsPricesOKBodyItems0 struct {
// get_markets_prices_adjusted_price
//
// adjusted_price number
AdjustedPrice float32 `json:"adjusted_price,omitempty"`
// get_markets_prices_average_price
//
// average_price number
AveragePrice float32 `json:"average_price,omitempty"`
// get_markets_prices_type_id
//
// type_id integer
// Required: true
TypeID *int32 `json:"type_id"`
}
// Validate validates this get markets prices o k body items0
func (o *GetMarketsPricesOKBodyItems0) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateTypeID(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (o *GetMarketsPricesOKBodyItems0) validateTypeID(formats strfmt.Registry) error {
if err := validate.Required("type_id", "body", o.TypeID); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (o *GetMarketsPricesOKBodyItems0) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *GetMarketsPricesOKBodyItems0) UnmarshalBinary(b []byte) error {
var res GetMarketsPricesOKBodyItems0
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}