Initial cloud-services repo - gateway service + pkg modules
This commit is contained in:
502
pkg/ota_api/client/operations/get_carupdates_responses.go
Normal file
502
pkg/ota_api/client/operations/get_carupdates_responses.go
Normal file
@@ -0,0 +1,502 @@
|
||||
// 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"
|
||||
)
|
||||
|
||||
// GetCarupdatesReader is a Reader for the GetCarupdates structure.
|
||||
type GetCarupdatesReader struct {
|
||||
formats strfmt.Registry
|
||||
}
|
||||
|
||||
// ReadResponse reads a server response into the received o.
|
||||
func (o *GetCarupdatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
||||
switch response.Code() {
|
||||
case 200:
|
||||
result := NewGetCarupdatesOK()
|
||||
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return result, nil
|
||||
case 400:
|
||||
result := NewGetCarupdatesBadRequest()
|
||||
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return nil, result
|
||||
case 401:
|
||||
result := NewGetCarupdatesUnauthorized()
|
||||
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return nil, result
|
||||
case 503:
|
||||
result := NewGetCarupdatesServiceUnavailable()
|
||||
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return nil, result
|
||||
default:
|
||||
return nil, runtime.NewAPIError("[GET /carupdates] GetCarupdates", response, response.Code())
|
||||
}
|
||||
}
|
||||
|
||||
// NewGetCarupdatesOK creates a GetCarupdatesOK with default headers values
|
||||
func NewGetCarupdatesOK() *GetCarupdatesOK {
|
||||
return &GetCarupdatesOK{}
|
||||
}
|
||||
|
||||
/*
|
||||
GetCarupdatesOK describes a response with status code 200, with default header values.
|
||||
|
||||
OK
|
||||
*/
|
||||
type GetCarupdatesOK struct {
|
||||
Payload *GetCarupdatesOKBody
|
||||
}
|
||||
|
||||
// IsSuccess returns true when this get carupdates o k response has a 2xx status code
|
||||
func (o *GetCarupdatesOK) IsSuccess() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
// IsRedirect returns true when this get carupdates o k response has a 3xx status code
|
||||
func (o *GetCarupdatesOK) IsRedirect() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsClientError returns true when this get carupdates o k response has a 4xx status code
|
||||
func (o *GetCarupdatesOK) IsClientError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsServerError returns true when this get carupdates o k response has a 5xx status code
|
||||
func (o *GetCarupdatesOK) IsServerError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsCode returns true when this get carupdates o k response a status code equal to that given
|
||||
func (o *GetCarupdatesOK) IsCode(code int) bool {
|
||||
return code == 200
|
||||
}
|
||||
|
||||
// Code gets the status code for the get carupdates o k response
|
||||
func (o *GetCarupdatesOK) Code() int {
|
||||
return 200
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesOK) Error() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesOK %s", 200, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesOK) String() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesOK %s", 200, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesOK) GetPayload() *GetCarupdatesOKBody {
|
||||
return o.Payload
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
||||
|
||||
o.Payload = new(GetCarupdatesOKBody)
|
||||
|
||||
// response payload
|
||||
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// NewGetCarupdatesBadRequest creates a GetCarupdatesBadRequest with default headers values
|
||||
func NewGetCarupdatesBadRequest() *GetCarupdatesBadRequest {
|
||||
return &GetCarupdatesBadRequest{}
|
||||
}
|
||||
|
||||
/*
|
||||
GetCarupdatesBadRequest describes a response with status code 400, with default header values.
|
||||
|
||||
Bad request
|
||||
*/
|
||||
type GetCarupdatesBadRequest struct {
|
||||
Payload *models.CommonJSONError
|
||||
}
|
||||
|
||||
// IsSuccess returns true when this get carupdates bad request response has a 2xx status code
|
||||
func (o *GetCarupdatesBadRequest) IsSuccess() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsRedirect returns true when this get carupdates bad request response has a 3xx status code
|
||||
func (o *GetCarupdatesBadRequest) IsRedirect() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsClientError returns true when this get carupdates bad request response has a 4xx status code
|
||||
func (o *GetCarupdatesBadRequest) IsClientError() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
// IsServerError returns true when this get carupdates bad request response has a 5xx status code
|
||||
func (o *GetCarupdatesBadRequest) IsServerError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsCode returns true when this get carupdates bad request response a status code equal to that given
|
||||
func (o *GetCarupdatesBadRequest) IsCode(code int) bool {
|
||||
return code == 400
|
||||
}
|
||||
|
||||
// Code gets the status code for the get carupdates bad request response
|
||||
func (o *GetCarupdatesBadRequest) Code() int {
|
||||
return 400
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesBadRequest) Error() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesBadRequest %s", 400, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesBadRequest) String() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesBadRequest %s", 400, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesBadRequest) GetPayload() *models.CommonJSONError {
|
||||
return o.Payload
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesBadRequest) 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
|
||||
}
|
||||
|
||||
// NewGetCarupdatesUnauthorized creates a GetCarupdatesUnauthorized with default headers values
|
||||
func NewGetCarupdatesUnauthorized() *GetCarupdatesUnauthorized {
|
||||
return &GetCarupdatesUnauthorized{}
|
||||
}
|
||||
|
||||
/*
|
||||
GetCarupdatesUnauthorized describes a response with status code 401, with default header values.
|
||||
|
||||
Unauthorized
|
||||
*/
|
||||
type GetCarupdatesUnauthorized struct {
|
||||
Payload *models.CommonJSONError
|
||||
}
|
||||
|
||||
// IsSuccess returns true when this get carupdates unauthorized response has a 2xx status code
|
||||
func (o *GetCarupdatesUnauthorized) IsSuccess() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsRedirect returns true when this get carupdates unauthorized response has a 3xx status code
|
||||
func (o *GetCarupdatesUnauthorized) IsRedirect() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsClientError returns true when this get carupdates unauthorized response has a 4xx status code
|
||||
func (o *GetCarupdatesUnauthorized) IsClientError() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
// IsServerError returns true when this get carupdates unauthorized response has a 5xx status code
|
||||
func (o *GetCarupdatesUnauthorized) IsServerError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsCode returns true when this get carupdates unauthorized response a status code equal to that given
|
||||
func (o *GetCarupdatesUnauthorized) IsCode(code int) bool {
|
||||
return code == 401
|
||||
}
|
||||
|
||||
// Code gets the status code for the get carupdates unauthorized response
|
||||
func (o *GetCarupdatesUnauthorized) Code() int {
|
||||
return 401
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesUnauthorized) Error() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesUnauthorized %s", 401, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesUnauthorized) String() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesUnauthorized %s", 401, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesUnauthorized) GetPayload() *models.CommonJSONError {
|
||||
return o.Payload
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesUnauthorized) 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
|
||||
}
|
||||
|
||||
// NewGetCarupdatesServiceUnavailable creates a GetCarupdatesServiceUnavailable with default headers values
|
||||
func NewGetCarupdatesServiceUnavailable() *GetCarupdatesServiceUnavailable {
|
||||
return &GetCarupdatesServiceUnavailable{}
|
||||
}
|
||||
|
||||
/*
|
||||
GetCarupdatesServiceUnavailable describes a response with status code 503, with default header values.
|
||||
|
||||
Service unavailable
|
||||
*/
|
||||
type GetCarupdatesServiceUnavailable struct {
|
||||
Payload *models.CommonJSONError
|
||||
}
|
||||
|
||||
// IsSuccess returns true when this get carupdates service unavailable response has a 2xx status code
|
||||
func (o *GetCarupdatesServiceUnavailable) IsSuccess() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsRedirect returns true when this get carupdates service unavailable response has a 3xx status code
|
||||
func (o *GetCarupdatesServiceUnavailable) IsRedirect() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsClientError returns true when this get carupdates service unavailable response has a 4xx status code
|
||||
func (o *GetCarupdatesServiceUnavailable) IsClientError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsServerError returns true when this get carupdates service unavailable response has a 5xx status code
|
||||
func (o *GetCarupdatesServiceUnavailable) IsServerError() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
// IsCode returns true when this get carupdates service unavailable response a status code equal to that given
|
||||
func (o *GetCarupdatesServiceUnavailable) IsCode(code int) bool {
|
||||
return code == 503
|
||||
}
|
||||
|
||||
// Code gets the status code for the get carupdates service unavailable response
|
||||
func (o *GetCarupdatesServiceUnavailable) Code() int {
|
||||
return 503
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesServiceUnavailable) Error() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesServiceUnavailable %s", 503, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesServiceUnavailable) String() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[GET /carupdates][%d] getCarupdatesServiceUnavailable %s", 503, payload)
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesServiceUnavailable) GetPayload() *models.CommonJSONError {
|
||||
return o.Payload
|
||||
}
|
||||
|
||||
func (o *GetCarupdatesServiceUnavailable) 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
|
||||
}
|
||||
|
||||
/*
|
||||
GetCarupdatesOKBody get carupdates o k body
|
||||
swagger:model GetCarupdatesOKBody
|
||||
*/
|
||||
type GetCarupdatesOKBody struct {
|
||||
models.CommonJSONDBQueryResult
|
||||
|
||||
// data
|
||||
Data []*models.CommonCarUpdate `json:"data"`
|
||||
}
|
||||
|
||||
// UnmarshalJSON unmarshals this object from a JSON structure
|
||||
func (o *GetCarupdatesOKBody) UnmarshalJSON(raw []byte) error {
|
||||
// GetCarupdatesOKBodyAO0
|
||||
var getCarupdatesOKBodyAO0 models.CommonJSONDBQueryResult
|
||||
if err := swag.ReadJSON(raw, &getCarupdatesOKBodyAO0); err != nil {
|
||||
return err
|
||||
}
|
||||
o.CommonJSONDBQueryResult = getCarupdatesOKBodyAO0
|
||||
|
||||
// GetCarupdatesOKBodyAO1
|
||||
var dataGetCarupdatesOKBodyAO1 struct {
|
||||
Data []*models.CommonCarUpdate `json:"data"`
|
||||
}
|
||||
if err := swag.ReadJSON(raw, &dataGetCarupdatesOKBodyAO1); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
o.Data = dataGetCarupdatesOKBodyAO1.Data
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// MarshalJSON marshals this object to a JSON structure
|
||||
func (o GetCarupdatesOKBody) MarshalJSON() ([]byte, error) {
|
||||
_parts := make([][]byte, 0, 2)
|
||||
|
||||
getCarupdatesOKBodyAO0, err := swag.WriteJSON(o.CommonJSONDBQueryResult)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
_parts = append(_parts, getCarupdatesOKBodyAO0)
|
||||
var dataGetCarupdatesOKBodyAO1 struct {
|
||||
Data []*models.CommonCarUpdate `json:"data"`
|
||||
}
|
||||
|
||||
dataGetCarupdatesOKBodyAO1.Data = o.Data
|
||||
|
||||
jsonDataGetCarupdatesOKBodyAO1, errGetCarupdatesOKBodyAO1 := swag.WriteJSON(dataGetCarupdatesOKBodyAO1)
|
||||
if errGetCarupdatesOKBodyAO1 != nil {
|
||||
return nil, errGetCarupdatesOKBodyAO1
|
||||
}
|
||||
_parts = append(_parts, jsonDataGetCarupdatesOKBodyAO1)
|
||||
return swag.ConcatJSON(_parts...), nil
|
||||
}
|
||||
|
||||
// Validate validates this get carupdates o k body
|
||||
func (o *GetCarupdatesOKBody) 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 *GetCarupdatesOKBody) 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("getCarupdatesOK" + "." + "data" + "." + strconv.Itoa(i))
|
||||
} else if ce, ok := err.(*errors.CompositeError); ok {
|
||||
return ce.ValidateName("getCarupdatesOK" + "." + "data" + "." + strconv.Itoa(i))
|
||||
}
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// ContextValidate validate this get carupdates o k body based on the context it is used
|
||||
func (o *GetCarupdatesOKBody) 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 *GetCarupdatesOKBody) 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("getCarupdatesOK" + "." + "data" + "." + strconv.Itoa(i))
|
||||
} else if ce, ok := err.(*errors.CompositeError); ok {
|
||||
return ce.ValidateName("getCarupdatesOK" + "." + "data" + "." + strconv.Itoa(i))
|
||||
}
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// MarshalBinary interface implementation
|
||||
func (o *GetCarupdatesOKBody) MarshalBinary() ([]byte, error) {
|
||||
if o == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return swag.WriteJSON(o)
|
||||
}
|
||||
|
||||
// UnmarshalBinary interface implementation
|
||||
func (o *GetCarupdatesOKBody) UnmarshalBinary(b []byte) error {
|
||||
var res GetCarupdatesOKBody
|
||||
if err := swag.ReadJSON(b, &res); err != nil {
|
||||
return err
|
||||
}
|
||||
*o = res
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user