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/bookmarks/get_characters_character_id_bookmarks_folders_responses.go

199 lines
6.6 KiB
Go

package bookmarks
// 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"
)
// GetCharactersCharacterIDBookmarksFoldersReader is a Reader for the GetCharactersCharacterIDBookmarksFolders structure.
type GetCharactersCharacterIDBookmarksFoldersReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetCharactersCharacterIDBookmarksFoldersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetCharactersCharacterIDBookmarksFoldersOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 403:
result := NewGetCharactersCharacterIDBookmarksFoldersForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewGetCharactersCharacterIDBookmarksFoldersInternalServerError()
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())
}
}
// NewGetCharactersCharacterIDBookmarksFoldersOK creates a GetCharactersCharacterIDBookmarksFoldersOK with default headers values
func NewGetCharactersCharacterIDBookmarksFoldersOK() *GetCharactersCharacterIDBookmarksFoldersOK {
return &GetCharactersCharacterIDBookmarksFoldersOK{}
}
/*GetCharactersCharacterIDBookmarksFoldersOK handles this case with default header values.
List of bookmark folders
*/
type GetCharactersCharacterIDBookmarksFoldersOK struct {
/*The caching mechanism used
*/
CacheControl string
/*RFC7231 formatted datetime string
*/
Expires string
/*RFC7231 formatted datetime string
*/
LastModified string
Payload []*GetCharactersCharacterIDBookmarksFoldersOKBodyItems0
}
func (o *GetCharactersCharacterIDBookmarksFoldersOK) Error() string {
return fmt.Sprintf("[GET /characters/{character_id}/bookmarks/folders/][%d] getCharactersCharacterIdBookmarksFoldersOK %+v", 200, o.Payload)
}
func (o *GetCharactersCharacterIDBookmarksFoldersOK) 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
}
// NewGetCharactersCharacterIDBookmarksFoldersForbidden creates a GetCharactersCharacterIDBookmarksFoldersForbidden with default headers values
func NewGetCharactersCharacterIDBookmarksFoldersForbidden() *GetCharactersCharacterIDBookmarksFoldersForbidden {
return &GetCharactersCharacterIDBookmarksFoldersForbidden{}
}
/*GetCharactersCharacterIDBookmarksFoldersForbidden handles this case with default header values.
Forbidden
*/
type GetCharactersCharacterIDBookmarksFoldersForbidden struct {
Payload GetCharactersCharacterIDBookmarksFoldersForbiddenBody
}
func (o *GetCharactersCharacterIDBookmarksFoldersForbidden) Error() string {
return fmt.Sprintf("[GET /characters/{character_id}/bookmarks/folders/][%d] getCharactersCharacterIdBookmarksFoldersForbidden %+v", 403, o.Payload)
}
func (o *GetCharactersCharacterIDBookmarksFoldersForbidden) 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
}
// NewGetCharactersCharacterIDBookmarksFoldersInternalServerError creates a GetCharactersCharacterIDBookmarksFoldersInternalServerError with default headers values
func NewGetCharactersCharacterIDBookmarksFoldersInternalServerError() *GetCharactersCharacterIDBookmarksFoldersInternalServerError {
return &GetCharactersCharacterIDBookmarksFoldersInternalServerError{}
}
/*GetCharactersCharacterIDBookmarksFoldersInternalServerError handles this case with default header values.
Internal server error
*/
type GetCharactersCharacterIDBookmarksFoldersInternalServerError struct {
Payload GetCharactersCharacterIDBookmarksFoldersInternalServerErrorBody
}
func (o *GetCharactersCharacterIDBookmarksFoldersInternalServerError) Error() string {
return fmt.Sprintf("[GET /characters/{character_id}/bookmarks/folders/][%d] getCharactersCharacterIdBookmarksFoldersInternalServerError %+v", 500, o.Payload)
}
func (o *GetCharactersCharacterIDBookmarksFoldersInternalServerError) 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
}
/*GetCharactersCharacterIDBookmarksFoldersOKBodyItems0 get_characters_character_id_bookmarks_folders_200_ok
//
// 200 ok object
swagger:model GetCharactersCharacterIDBookmarksFoldersOKBodyItems0
*/
type GetCharactersCharacterIDBookmarksFoldersOKBodyItems0 struct {
// get_characters_character_id_bookmarks_folders_folder_id
//
// folder_id integer
FolderID int32 `json:"folder_id,omitempty"`
// get_characters_character_id_bookmarks_folders_name
//
// name string
Name string `json:"name,omitempty"`
// get_characters_character_id_bookmarks_folders_owner_id
//
// owner_id integer
OwnerID int32 `json:"owner_id,omitempty"`
}
/*GetCharactersCharacterIDBookmarksFoldersForbiddenBody get_characters_character_id_bookmarks_folders_forbidden
//
// Forbidden
swagger:model GetCharactersCharacterIDBookmarksFoldersForbiddenBody
*/
type GetCharactersCharacterIDBookmarksFoldersForbiddenBody struct {
// get_characters_character_id_bookmarks_folders_403_forbidden
//
// Forbidden message
// Required: true
Error *string `json:"error"`
}
/*GetCharactersCharacterIDBookmarksFoldersInternalServerErrorBody get_characters_character_id_bookmarks_folders_internal_server_error
//
// Internal server error
swagger:model GetCharactersCharacterIDBookmarksFoldersInternalServerErrorBody
*/
type GetCharactersCharacterIDBookmarksFoldersInternalServerErrorBody struct {
// get_characters_character_id_bookmarks_folders_500_internal_server_error
//
// Internal server error message
// Required: true
Error *string `json:"error"`
}