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/location/get_characters_character_id_ship_responses.go

202 lines
6.1 KiB
Go

package location
// 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/runtime"
strfmt "github.com/go-openapi/strfmt"
)
// GetCharactersCharacterIDShipReader is a Reader for the GetCharactersCharacterIDShip structure.
type GetCharactersCharacterIDShipReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetCharactersCharacterIDShipReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetCharactersCharacterIDShipOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 403:
result := NewGetCharactersCharacterIDShipForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewGetCharactersCharacterIDShipInternalServerError()
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())
}
}
// NewGetCharactersCharacterIDShipOK creates a GetCharactersCharacterIDShipOK with default headers values
func NewGetCharactersCharacterIDShipOK() *GetCharactersCharacterIDShipOK {
return &GetCharactersCharacterIDShipOK{}
}
/*GetCharactersCharacterIDShipOK handles this case with default header values.
Get the current ship type, name and id
*/
type GetCharactersCharacterIDShipOK struct {
/*The caching mechanism used
*/
CacheControl string
/*RFC7231 formatted datetime string
*/
Expires string
/*RFC7231 formatted datetime string
*/
LastModified string
Payload GetCharactersCharacterIDShipOKBody
}
func (o *GetCharactersCharacterIDShipOK) Error() string {
return fmt.Sprintf("[GET /characters/{character_id}/ship/][%d] getCharactersCharacterIdShipOK %+v", 200, o.Payload)
}
func (o *GetCharactersCharacterIDShipOK) 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
}
// NewGetCharactersCharacterIDShipForbidden creates a GetCharactersCharacterIDShipForbidden with default headers values
func NewGetCharactersCharacterIDShipForbidden() *GetCharactersCharacterIDShipForbidden {
return &GetCharactersCharacterIDShipForbidden{}
}
/*GetCharactersCharacterIDShipForbidden handles this case with default header values.
Forbidden
*/
type GetCharactersCharacterIDShipForbidden struct {
Payload GetCharactersCharacterIDShipForbiddenBody
}
func (o *GetCharactersCharacterIDShipForbidden) Error() string {
return fmt.Sprintf("[GET /characters/{character_id}/ship/][%d] getCharactersCharacterIdShipForbidden %+v", 403, o.Payload)
}
func (o *GetCharactersCharacterIDShipForbidden) 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
}
// NewGetCharactersCharacterIDShipInternalServerError creates a GetCharactersCharacterIDShipInternalServerError with default headers values
func NewGetCharactersCharacterIDShipInternalServerError() *GetCharactersCharacterIDShipInternalServerError {
return &GetCharactersCharacterIDShipInternalServerError{}
}
/*GetCharactersCharacterIDShipInternalServerError handles this case with default header values.
Internal server error
*/
type GetCharactersCharacterIDShipInternalServerError struct {
Payload GetCharactersCharacterIDShipInternalServerErrorBody
}
func (o *GetCharactersCharacterIDShipInternalServerError) Error() string {
return fmt.Sprintf("[GET /characters/{character_id}/ship/][%d] getCharactersCharacterIdShipInternalServerError %+v", 500, o.Payload)
}
func (o *GetCharactersCharacterIDShipInternalServerError) 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
}
/*GetCharactersCharacterIDShipOKBody get_characters_character_id_ship_ok
//
// 200 ok object
swagger:model GetCharactersCharacterIDShipOKBody
*/
type GetCharactersCharacterIDShipOKBody struct {
// get_characters_character_id_ship_ship_item_id
//
// Item id's are unique to a ship and persist until it is repackaged. This value can be used to track repeated uses of a ship, or detect when a pilot changes into a different instance of the same ship type.
// Required: true
ShipItemID *int64 `json:"ship_item_id"`
// get_characters_character_id_ship_ship_name
//
// ship_name string
// Required: true
ShipName *string `json:"ship_name"`
// get_characters_character_id_ship_ship_type_id
//
// ship_type_id integer
// Required: true
ShipTypeID *int32 `json:"ship_type_id"`
}
/*GetCharactersCharacterIDShipForbiddenBody get_characters_character_id_ship_forbidden
//
// Forbidden
swagger:model GetCharactersCharacterIDShipForbiddenBody
*/
type GetCharactersCharacterIDShipForbiddenBody struct {
// get_characters_character_id_ship_403_forbidden
//
// Forbidden message
// Required: true
Error *string `json:"error"`
}
/*GetCharactersCharacterIDShipInternalServerErrorBody get_characters_character_id_ship_internal_server_error
//
// Internal server error
swagger:model GetCharactersCharacterIDShipInternalServerErrorBody
*/
type GetCharactersCharacterIDShipInternalServerErrorBody struct {
// get_characters_character_id_ship_500_internal_server_error
//
// Internal server error message
// Required: true
Error *string `json:"error"`
}