503 lines
14 KiB
Go
503 lines
14 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package operations
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/runtime"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
|
|
"fiskerinc.com/modules/ota_api/models"
|
|
)
|
|
|
|
// GetEcuStatsReader is a Reader for the GetEcuStats structure.
|
|
type GetEcuStatsReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetEcuStatsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetEcuStatsOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 400:
|
|
result := NewGetEcuStatsBadRequest()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 401:
|
|
result := NewGetEcuStatsUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 503:
|
|
result := NewGetEcuStatsServiceUnavailable()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
default:
|
|
return nil, runtime.NewAPIError("[GET /ecu_stats] GetEcuStats", response, response.Code())
|
|
}
|
|
}
|
|
|
|
// NewGetEcuStatsOK creates a GetEcuStatsOK with default headers values
|
|
func NewGetEcuStatsOK() *GetEcuStatsOK {
|
|
return &GetEcuStatsOK{}
|
|
}
|
|
|
|
/*
|
|
GetEcuStatsOK describes a response with status code 200, with default header values.
|
|
|
|
OK
|
|
*/
|
|
type GetEcuStatsOK struct {
|
|
Payload *GetEcuStatsOKBody
|
|
}
|
|
|
|
// IsSuccess returns true when this get ecu stats o k response has a 2xx status code
|
|
func (o *GetEcuStatsOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this get ecu stats o k response has a 3xx status code
|
|
func (o *GetEcuStatsOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get ecu stats o k response has a 4xx status code
|
|
func (o *GetEcuStatsOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get ecu stats o k response has a 5xx status code
|
|
func (o *GetEcuStatsOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get ecu stats o k response a status code equal to that given
|
|
func (o *GetEcuStatsOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the get ecu stats o k response
|
|
func (o *GetEcuStatsOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *GetEcuStatsOK) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsOK) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsOK) GetPayload() *GetEcuStatsOKBody {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetEcuStatsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(GetEcuStatsOKBody)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetEcuStatsBadRequest creates a GetEcuStatsBadRequest with default headers values
|
|
func NewGetEcuStatsBadRequest() *GetEcuStatsBadRequest {
|
|
return &GetEcuStatsBadRequest{}
|
|
}
|
|
|
|
/*
|
|
GetEcuStatsBadRequest describes a response with status code 400, with default header values.
|
|
|
|
Bad request
|
|
*/
|
|
type GetEcuStatsBadRequest struct {
|
|
Payload *models.CommonJSONError
|
|
}
|
|
|
|
// IsSuccess returns true when this get ecu stats bad request response has a 2xx status code
|
|
func (o *GetEcuStatsBadRequest) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get ecu stats bad request response has a 3xx status code
|
|
func (o *GetEcuStatsBadRequest) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get ecu stats bad request response has a 4xx status code
|
|
func (o *GetEcuStatsBadRequest) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get ecu stats bad request response has a 5xx status code
|
|
func (o *GetEcuStatsBadRequest) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get ecu stats bad request response a status code equal to that given
|
|
func (o *GetEcuStatsBadRequest) IsCode(code int) bool {
|
|
return code == 400
|
|
}
|
|
|
|
// Code gets the status code for the get ecu stats bad request response
|
|
func (o *GetEcuStatsBadRequest) Code() int {
|
|
return 400
|
|
}
|
|
|
|
func (o *GetEcuStatsBadRequest) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsBadRequest %s", 400, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsBadRequest) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsBadRequest %s", 400, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsBadRequest) GetPayload() *models.CommonJSONError {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetEcuStatsBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.CommonJSONError)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetEcuStatsUnauthorized creates a GetEcuStatsUnauthorized with default headers values
|
|
func NewGetEcuStatsUnauthorized() *GetEcuStatsUnauthorized {
|
|
return &GetEcuStatsUnauthorized{}
|
|
}
|
|
|
|
/*
|
|
GetEcuStatsUnauthorized describes a response with status code 401, with default header values.
|
|
|
|
Unauthorized
|
|
*/
|
|
type GetEcuStatsUnauthorized struct {
|
|
Payload *models.CommonJSONError
|
|
}
|
|
|
|
// IsSuccess returns true when this get ecu stats unauthorized response has a 2xx status code
|
|
func (o *GetEcuStatsUnauthorized) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get ecu stats unauthorized response has a 3xx status code
|
|
func (o *GetEcuStatsUnauthorized) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get ecu stats unauthorized response has a 4xx status code
|
|
func (o *GetEcuStatsUnauthorized) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get ecu stats unauthorized response has a 5xx status code
|
|
func (o *GetEcuStatsUnauthorized) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get ecu stats unauthorized response a status code equal to that given
|
|
func (o *GetEcuStatsUnauthorized) IsCode(code int) bool {
|
|
return code == 401
|
|
}
|
|
|
|
// Code gets the status code for the get ecu stats unauthorized response
|
|
func (o *GetEcuStatsUnauthorized) Code() int {
|
|
return 401
|
|
}
|
|
|
|
func (o *GetEcuStatsUnauthorized) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsUnauthorized %s", 401, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsUnauthorized) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsUnauthorized %s", 401, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsUnauthorized) GetPayload() *models.CommonJSONError {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetEcuStatsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.CommonJSONError)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetEcuStatsServiceUnavailable creates a GetEcuStatsServiceUnavailable with default headers values
|
|
func NewGetEcuStatsServiceUnavailable() *GetEcuStatsServiceUnavailable {
|
|
return &GetEcuStatsServiceUnavailable{}
|
|
}
|
|
|
|
/*
|
|
GetEcuStatsServiceUnavailable describes a response with status code 503, with default header values.
|
|
|
|
Service unavailable
|
|
*/
|
|
type GetEcuStatsServiceUnavailable struct {
|
|
Payload *models.CommonJSONError
|
|
}
|
|
|
|
// IsSuccess returns true when this get ecu stats service unavailable response has a 2xx status code
|
|
func (o *GetEcuStatsServiceUnavailable) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get ecu stats service unavailable response has a 3xx status code
|
|
func (o *GetEcuStatsServiceUnavailable) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get ecu stats service unavailable response has a 4xx status code
|
|
func (o *GetEcuStatsServiceUnavailable) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get ecu stats service unavailable response has a 5xx status code
|
|
func (o *GetEcuStatsServiceUnavailable) IsServerError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsCode returns true when this get ecu stats service unavailable response a status code equal to that given
|
|
func (o *GetEcuStatsServiceUnavailable) IsCode(code int) bool {
|
|
return code == 503
|
|
}
|
|
|
|
// Code gets the status code for the get ecu stats service unavailable response
|
|
func (o *GetEcuStatsServiceUnavailable) Code() int {
|
|
return 503
|
|
}
|
|
|
|
func (o *GetEcuStatsServiceUnavailable) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsServiceUnavailable %s", 503, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsServiceUnavailable) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /ecu_stats][%d] getEcuStatsServiceUnavailable %s", 503, payload)
|
|
}
|
|
|
|
func (o *GetEcuStatsServiceUnavailable) GetPayload() *models.CommonJSONError {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetEcuStatsServiceUnavailable) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.CommonJSONError)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
/*
|
|
GetEcuStatsOKBody get ecu stats o k body
|
|
swagger:model GetEcuStatsOKBody
|
|
*/
|
|
type GetEcuStatsOKBody struct {
|
|
models.CommonJSONDBQueryResult
|
|
|
|
// data
|
|
Data []*models.CommonECUStat `json:"data"`
|
|
}
|
|
|
|
// UnmarshalJSON unmarshals this object from a JSON structure
|
|
func (o *GetEcuStatsOKBody) UnmarshalJSON(raw []byte) error {
|
|
// GetEcuStatsOKBodyAO0
|
|
var getEcuStatsOKBodyAO0 models.CommonJSONDBQueryResult
|
|
if err := swag.ReadJSON(raw, &getEcuStatsOKBodyAO0); err != nil {
|
|
return err
|
|
}
|
|
o.CommonJSONDBQueryResult = getEcuStatsOKBodyAO0
|
|
|
|
// GetEcuStatsOKBodyAO1
|
|
var dataGetEcuStatsOKBodyAO1 struct {
|
|
Data []*models.CommonECUStat `json:"data"`
|
|
}
|
|
if err := swag.ReadJSON(raw, &dataGetEcuStatsOKBodyAO1); err != nil {
|
|
return err
|
|
}
|
|
|
|
o.Data = dataGetEcuStatsOKBodyAO1.Data
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON marshals this object to a JSON structure
|
|
func (o GetEcuStatsOKBody) MarshalJSON() ([]byte, error) {
|
|
_parts := make([][]byte, 0, 2)
|
|
|
|
getEcuStatsOKBodyAO0, err := swag.WriteJSON(o.CommonJSONDBQueryResult)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
_parts = append(_parts, getEcuStatsOKBodyAO0)
|
|
var dataGetEcuStatsOKBodyAO1 struct {
|
|
Data []*models.CommonECUStat `json:"data"`
|
|
}
|
|
|
|
dataGetEcuStatsOKBodyAO1.Data = o.Data
|
|
|
|
jsonDataGetEcuStatsOKBodyAO1, errGetEcuStatsOKBodyAO1 := swag.WriteJSON(dataGetEcuStatsOKBodyAO1)
|
|
if errGetEcuStatsOKBodyAO1 != nil {
|
|
return nil, errGetEcuStatsOKBodyAO1
|
|
}
|
|
_parts = append(_parts, jsonDataGetEcuStatsOKBodyAO1)
|
|
return swag.ConcatJSON(_parts...), nil
|
|
}
|
|
|
|
// Validate validates this get ecu stats o k body
|
|
func (o *GetEcuStatsOKBody) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
// validation for a type composition with models.CommonJSONDBQueryResult
|
|
if err := o.CommonJSONDBQueryResult.Validate(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := o.validateData(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *GetEcuStatsOKBody) validateData(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(o.Data) { // not required
|
|
return nil
|
|
}
|
|
|
|
for i := 0; i < len(o.Data); i++ {
|
|
if swag.IsZero(o.Data[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if o.Data[i] != nil {
|
|
if err := o.Data[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("getEcuStatsOK" + "." + "data" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("getEcuStatsOK" + "." + "data" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this get ecu stats o k body based on the context it is used
|
|
func (o *GetEcuStatsOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
// validation for a type composition with models.CommonJSONDBQueryResult
|
|
if err := o.CommonJSONDBQueryResult.ContextValidate(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := o.contextValidateData(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *GetEcuStatsOKBody) contextValidateData(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(o.Data); i++ {
|
|
|
|
if o.Data[i] != nil {
|
|
|
|
if swag.IsZero(o.Data[i]) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := o.Data[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("getEcuStatsOK" + "." + "data" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("getEcuStatsOK" + "." + "data" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (o *GetEcuStatsOKBody) MarshalBinary() ([]byte, error) {
|
|
if o == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(o)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (o *GetEcuStatsOKBody) UnmarshalBinary(b []byte) error {
|
|
var res GetEcuStatsOKBody
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*o = res
|
|
return nil
|
|
}
|