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/status/get_status_responses.go

150 lines
3.5 KiB
Go

package status
// 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"
"local/models"
)
// GetStatusReader is a Reader for the GetStatus structure.
type GetStatusReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetStatusReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetStatusOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 500:
result := NewGetStatusInternalServerError()
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())
}
}
// NewGetStatusOK creates a GetStatusOK with default headers values
func NewGetStatusOK() *GetStatusOK {
return &GetStatusOK{}
}
/*GetStatusOK handles this case with default header values.
Server status
*/
type GetStatusOK struct {
/*The caching mechanism used
*/
CacheControl string
/*RFC7231 formatted datetime string
*/
Expires string
/*RFC7231 formatted datetime string
*/
LastModified string
Payload GetStatusOKBody
}
func (o *GetStatusOK) Error() string {
return fmt.Sprintf("[GET /status/][%d] getStatusOK %+v", 200, o.Payload)
}
func (o *GetStatusOK) 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
}
// NewGetStatusInternalServerError creates a GetStatusInternalServerError with default headers values
func NewGetStatusInternalServerError() *GetStatusInternalServerError {
return &GetStatusInternalServerError{}
}
/*GetStatusInternalServerError handles this case with default header values.
Internal server error
*/
type GetStatusInternalServerError struct {
Payload *models.InternalServerError
}
func (o *GetStatusInternalServerError) Error() string {
return fmt.Sprintf("[GET /status/][%d] getStatusInternalServerError %+v", 500, o.Payload)
}
func (o *GetStatusInternalServerError) 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
}
/*GetStatusOKBody get_status_ok
//
// 200 ok object
swagger:model GetStatusOKBody
*/
type GetStatusOKBody struct {
// get_status_players
//
// Current online player count
// Required: true
Players *int64 `json:"players"`
// get_status_server_version
//
// Running version as string
// Required: true
ServerVersion *string `json:"server_version"`
// get_status_start_time
//
// Server start timestamp
// Required: true
StartTime *strfmt.DateTime `json:"start_time"`
// get_status_vip
//
// If the server is in VIP mode
// Required: true
Vip *bool `json:"vip"`
}