lib/api/kazoo/kazoo_client/account/get_account_descendents_res...

148 lines
4.6 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 account
// 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"
)
// GetAccountDescendentsReader is a Reader for the GetAccountDescendents structure.
type GetAccountDescendentsReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetAccountDescendentsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetAccountDescendentsOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewGetAccountDescendentsUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewGetAccountDescendentsNotFound()
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())
}
}
// NewGetAccountDescendentsOK creates a GetAccountDescendentsOK with default headers values
func NewGetAccountDescendentsOK() *GetAccountDescendentsOK {
return &GetAccountDescendentsOK{}
}
/* GetAccountDescendentsOK describes a response with status code 200, with default header values.
Kazoo response
*/
type GetAccountDescendentsOK struct {
Payload *kazoo_models.GetAccountDescendentResponse
}
func (o *GetAccountDescendentsOK) Error() string {
return fmt.Sprintf("[GET /accounts/{accountId}/descendents][%d] getAccountDescendentsOK %+v", 200, o.Payload)
}
func (o *GetAccountDescendentsOK) GetPayload() *kazoo_models.GetAccountDescendentResponse {
return o.Payload
}
func (o *GetAccountDescendentsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(kazoo_models.GetAccountDescendentResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetAccountDescendentsUnauthorized creates a GetAccountDescendentsUnauthorized with default headers values
func NewGetAccountDescendentsUnauthorized() *GetAccountDescendentsUnauthorized {
return &GetAccountDescendentsUnauthorized{}
}
/* GetAccountDescendentsUnauthorized describes a response with status code 401, with default header values.
Access Unauthorized, invalid API-KEY was used
*/
type GetAccountDescendentsUnauthorized struct {
Payload *kazoo_models.Error
}
func (o *GetAccountDescendentsUnauthorized) Error() string {
return fmt.Sprintf("[GET /accounts/{accountId}/descendents][%d] getAccountDescendentsUnauthorized %+v", 401, o.Payload)
}
func (o *GetAccountDescendentsUnauthorized) GetPayload() *kazoo_models.Error {
return o.Payload
}
func (o *GetAccountDescendentsUnauthorized) 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
}
// NewGetAccountDescendentsNotFound creates a GetAccountDescendentsNotFound with default headers values
func NewGetAccountDescendentsNotFound() *GetAccountDescendentsNotFound {
return &GetAccountDescendentsNotFound{}
}
/* GetAccountDescendentsNotFound describes a response with status code 404, with default header values.
Resource was not found
*/
type GetAccountDescendentsNotFound struct {
Payload *kazoo_models.Error
}
func (o *GetAccountDescendentsNotFound) Error() string {
return fmt.Sprintf("[GET /accounts/{accountId}/descendents][%d] getAccountDescendentsNotFound %+v", 404, o.Payload)
}
func (o *GetAccountDescendentsNotFound) GetPayload() *kazoo_models.Error {
return o.Payload
}
func (o *GetAccountDescendentsNotFound) 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
}