158 lines
4.6 KiB
Go
158 lines
4.6 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package dogma
|
|
|
|
// 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"
|
|
|
|
"git.inf3.xyz/tschwery/eve-goclient.git/models"
|
|
)
|
|
|
|
// GetDogmaEffectsEffectIDReader is a Reader for the GetDogmaEffectsEffectID structure.
|
|
type GetDogmaEffectsEffectIDReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetDogmaEffectsEffectIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
|
|
case 200:
|
|
result := NewGetDogmaEffectsEffectIDOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
|
|
case 404:
|
|
result := NewGetDogmaEffectsEffectIDNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
|
|
case 500:
|
|
result := NewGetDogmaEffectsEffectIDInternalServerError()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewGetDogmaEffectsEffectIDOK creates a GetDogmaEffectsEffectIDOK with default headers values
|
|
func NewGetDogmaEffectsEffectIDOK() *GetDogmaEffectsEffectIDOK {
|
|
return &GetDogmaEffectsEffectIDOK{}
|
|
}
|
|
|
|
/*GetDogmaEffectsEffectIDOK handles this case with default header values.
|
|
|
|
Information about a dogma effect
|
|
*/
|
|
type GetDogmaEffectsEffectIDOK struct {
|
|
/*The caching mechanism used
|
|
*/
|
|
CacheControl string
|
|
/*RFC7231 formatted datetime string
|
|
*/
|
|
Expires string
|
|
/*RFC7231 formatted datetime string
|
|
*/
|
|
LastModified string
|
|
|
|
Payload *models.GetDogmaEffectsEffectIDOKBody
|
|
}
|
|
|
|
func (o *GetDogmaEffectsEffectIDOK) Error() string {
|
|
return fmt.Sprintf("[GET /dogma/effects/{effect_id}/][%d] getDogmaEffectsEffectIdOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetDogmaEffectsEffectIDOK) 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")
|
|
|
|
o.Payload = new(models.GetDogmaEffectsEffectIDOKBody)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetDogmaEffectsEffectIDNotFound creates a GetDogmaEffectsEffectIDNotFound with default headers values
|
|
func NewGetDogmaEffectsEffectIDNotFound() *GetDogmaEffectsEffectIDNotFound {
|
|
return &GetDogmaEffectsEffectIDNotFound{}
|
|
}
|
|
|
|
/*GetDogmaEffectsEffectIDNotFound handles this case with default header values.
|
|
|
|
Dogma effect not found
|
|
*/
|
|
type GetDogmaEffectsEffectIDNotFound struct {
|
|
Payload *models.GetDogmaEffectsEffectIDNotFoundBody
|
|
}
|
|
|
|
func (o *GetDogmaEffectsEffectIDNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /dogma/effects/{effect_id}/][%d] getDogmaEffectsEffectIdNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetDogmaEffectsEffectIDNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.GetDogmaEffectsEffectIDNotFoundBody)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetDogmaEffectsEffectIDInternalServerError creates a GetDogmaEffectsEffectIDInternalServerError with default headers values
|
|
func NewGetDogmaEffectsEffectIDInternalServerError() *GetDogmaEffectsEffectIDInternalServerError {
|
|
return &GetDogmaEffectsEffectIDInternalServerError{}
|
|
}
|
|
|
|
/*GetDogmaEffectsEffectIDInternalServerError handles this case with default header values.
|
|
|
|
Internal server error
|
|
*/
|
|
type GetDogmaEffectsEffectIDInternalServerError struct {
|
|
Payload *models.InternalServerError
|
|
}
|
|
|
|
func (o *GetDogmaEffectsEffectIDInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /dogma/effects/{effect_id}/][%d] getDogmaEffectsEffectIdInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetDogmaEffectsEffectIDInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.InternalServerError)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|