176 lines
4.6 KiB
Go
176 lines
4.6 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package companies
|
|
|
|
// 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"
|
|
|
|
models "src.dualinventive.com/go/companies-service/rest/models"
|
|
)
|
|
|
|
// GetCompaniesReader is a Reader for the GetCompanies structure.
|
|
type GetCompaniesReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetCompaniesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
|
|
case 200:
|
|
result := NewGetCompaniesOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
|
|
case 401:
|
|
result := NewGetCompaniesUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
|
|
case 404:
|
|
result := NewGetCompaniesNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
|
|
case 500:
|
|
result := NewGetCompaniesInternalServerError()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewGetCompaniesOK creates a GetCompaniesOK with default headers values
|
|
func NewGetCompaniesOK() *GetCompaniesOK {
|
|
return &GetCompaniesOK{}
|
|
}
|
|
|
|
/*GetCompaniesOK handles this case with default header values.
|
|
|
|
successful operation
|
|
*/
|
|
type GetCompaniesOK struct {
|
|
Payload *models.CompaniesList
|
|
}
|
|
|
|
func (o *GetCompaniesOK) Error() string {
|
|
return fmt.Sprintf("[GET /companies][%d] getCompaniesOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetCompaniesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.CompaniesList)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetCompaniesUnauthorized creates a GetCompaniesUnauthorized with default headers values
|
|
func NewGetCompaniesUnauthorized() *GetCompaniesUnauthorized {
|
|
return &GetCompaniesUnauthorized{}
|
|
}
|
|
|
|
/*GetCompaniesUnauthorized handles this case with default header values.
|
|
|
|
authentication failed
|
|
*/
|
|
type GetCompaniesUnauthorized struct {
|
|
Payload *models.ErrResponse
|
|
}
|
|
|
|
func (o *GetCompaniesUnauthorized) Error() string {
|
|
return fmt.Sprintf("[GET /companies][%d] getCompaniesUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *GetCompaniesUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.ErrResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetCompaniesNotFound creates a GetCompaniesNotFound with default headers values
|
|
func NewGetCompaniesNotFound() *GetCompaniesNotFound {
|
|
return &GetCompaniesNotFound{}
|
|
}
|
|
|
|
/*GetCompaniesNotFound handles this case with default header values.
|
|
|
|
not found
|
|
*/
|
|
type GetCompaniesNotFound struct {
|
|
Payload *models.ErrResponse
|
|
}
|
|
|
|
func (o *GetCompaniesNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /companies][%d] getCompaniesNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetCompaniesNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.ErrResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetCompaniesInternalServerError creates a GetCompaniesInternalServerError with default headers values
|
|
func NewGetCompaniesInternalServerError() *GetCompaniesInternalServerError {
|
|
return &GetCompaniesInternalServerError{}
|
|
}
|
|
|
|
/*GetCompaniesInternalServerError handles this case with default header values.
|
|
|
|
internal server error
|
|
*/
|
|
type GetCompaniesInternalServerError struct {
|
|
Payload *models.ErrResponse
|
|
}
|
|
|
|
func (o *GetCompaniesInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /companies][%d] getCompaniesInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetCompaniesInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(models.ErrResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|