lib/api/kazoo/kazoo_client/device/get_user_devices_responses.go

148 lines
4.3 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Telnexus LLC
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package device
// 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"
"github.com/go-openapi/strfmt"
"code.tnxs.net/telnexus/lib/api/kazoo/kazoo_models"
)
// GetUserDevicesReader is a Reader for the GetUserDevices structure.
type GetUserDevicesReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetUserDevicesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetUserDevicesOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewGetUserDevicesUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewGetUserDevicesNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("response status code does not match any response statuses defined for this endpoint in the swagger spec", response, response.Code())
}
}
// NewGetUserDevicesOK creates a GetUserDevicesOK with default headers values
func NewGetUserDevicesOK() *GetUserDevicesOK {
return &GetUserDevicesOK{}
}
/* GetUserDevicesOK describes a response with status code 200, with default header values.
Kazoo response
*/
type GetUserDevicesOK struct {
Payload *kazoo_models.GetDeviceResponse
}
func (o *GetUserDevicesOK) Error() string {
return fmt.Sprintf("[GET /accounts/{accountId}/users/{userId}/devices][%d] getUserDevicesOK %+v", 200, o.Payload)
}
func (o *GetUserDevicesOK) GetPayload() *kazoo_models.GetDeviceResponse {
return o.Payload
}
func (o *GetUserDevicesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(kazoo_models.GetDeviceResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUserDevicesUnauthorized creates a GetUserDevicesUnauthorized with default headers values
func NewGetUserDevicesUnauthorized() *GetUserDevicesUnauthorized {
return &GetUserDevicesUnauthorized{}
}
/* GetUserDevicesUnauthorized describes a response with status code 401, with default header values.
Access Unauthorized, invalid API-KEY was used
*/
type GetUserDevicesUnauthorized struct {
Payload *kazoo_models.Error
}
func (o *GetUserDevicesUnauthorized) Error() string {
return fmt.Sprintf("[GET /accounts/{accountId}/users/{userId}/devices][%d] getUserDevicesUnauthorized %+v", 401, o.Payload)
}
func (o *GetUserDevicesUnauthorized) GetPayload() *kazoo_models.Error {
return o.Payload
}
func (o *GetUserDevicesUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(kazoo_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetUserDevicesNotFound creates a GetUserDevicesNotFound with default headers values
func NewGetUserDevicesNotFound() *GetUserDevicesNotFound {
return &GetUserDevicesNotFound{}
}
/* GetUserDevicesNotFound describes a response with status code 404, with default header values.
Resource was not found
*/
type GetUserDevicesNotFound struct {
Payload *kazoo_models.Error
}
func (o *GetUserDevicesNotFound) Error() string {
return fmt.Sprintf("[GET /accounts/{accountId}/users/{userId}/devices][%d] getUserDevicesNotFound %+v", 404, o.Payload)
}
func (o *GetUserDevicesNotFound) GetPayload() *kazoo_models.Error {
return o.Payload
}
func (o *GetUserDevicesNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(kazoo_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}