mirror of https://github.com/vernonkeenan/lib
262 lines
7.3 KiB
Go
262 lines
7.3 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// (c) 2012-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package roles
|
|
|
|
// 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/vernonkeenan/lib/api/sfgate/sfgate_models"
|
|
)
|
|
|
|
// GetRolesReader is a Reader for the GetRoles structure.
|
|
type GetRolesReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetRolesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetRolesOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 401:
|
|
result := NewGetRolesUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 403:
|
|
result := NewGetRolesForbidden()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 404:
|
|
result := NewGetRolesNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 422:
|
|
result := NewGetRolesUnprocessableEntity()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 500:
|
|
result := NewGetRolesInternalServerError()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewGetRolesOK creates a GetRolesOK with default headers values
|
|
func NewGetRolesOK() *GetRolesOK {
|
|
return &GetRolesOK{}
|
|
}
|
|
|
|
/* GetRolesOK describes a response with status code 200, with default header values.
|
|
|
|
Taxnexus Response with Role objects
|
|
*/
|
|
type GetRolesOK struct {
|
|
Payload *sfgate_models.RoleResponse
|
|
}
|
|
|
|
func (o *GetRolesOK) Error() string {
|
|
return fmt.Sprintf("[GET /roles][%d] getRolesOK %+v", 200, o.Payload)
|
|
}
|
|
func (o *GetRolesOK) GetPayload() *sfgate_models.RoleResponse {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.RoleResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetRolesUnauthorized creates a GetRolesUnauthorized with default headers values
|
|
func NewGetRolesUnauthorized() *GetRolesUnauthorized {
|
|
return &GetRolesUnauthorized{}
|
|
}
|
|
|
|
/* GetRolesUnauthorized describes a response with status code 401, with default header values.
|
|
|
|
Access unauthorized, invalid API-KEY was used
|
|
*/
|
|
type GetRolesUnauthorized struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
func (o *GetRolesUnauthorized) Error() string {
|
|
return fmt.Sprintf("[GET /roles][%d] getRolesUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
func (o *GetRolesUnauthorized) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetRolesForbidden creates a GetRolesForbidden with default headers values
|
|
func NewGetRolesForbidden() *GetRolesForbidden {
|
|
return &GetRolesForbidden{}
|
|
}
|
|
|
|
/* GetRolesForbidden describes a response with status code 403, with default header values.
|
|
|
|
Access forbidden, account lacks access
|
|
*/
|
|
type GetRolesForbidden struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
func (o *GetRolesForbidden) Error() string {
|
|
return fmt.Sprintf("[GET /roles][%d] getRolesForbidden %+v", 403, o.Payload)
|
|
}
|
|
func (o *GetRolesForbidden) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetRolesNotFound creates a GetRolesNotFound with default headers values
|
|
func NewGetRolesNotFound() *GetRolesNotFound {
|
|
return &GetRolesNotFound{}
|
|
}
|
|
|
|
/* GetRolesNotFound describes a response with status code 404, with default header values.
|
|
|
|
Resource was not found
|
|
*/
|
|
type GetRolesNotFound struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
func (o *GetRolesNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /roles][%d] getRolesNotFound %+v", 404, o.Payload)
|
|
}
|
|
func (o *GetRolesNotFound) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetRolesUnprocessableEntity creates a GetRolesUnprocessableEntity with default headers values
|
|
func NewGetRolesUnprocessableEntity() *GetRolesUnprocessableEntity {
|
|
return &GetRolesUnprocessableEntity{}
|
|
}
|
|
|
|
/* GetRolesUnprocessableEntity describes a response with status code 422, with default header values.
|
|
|
|
Unprocessable Entity, likely a bad parameter
|
|
*/
|
|
type GetRolesUnprocessableEntity struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
func (o *GetRolesUnprocessableEntity) Error() string {
|
|
return fmt.Sprintf("[GET /roles][%d] getRolesUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
func (o *GetRolesUnprocessableEntity) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetRolesInternalServerError creates a GetRolesInternalServerError with default headers values
|
|
func NewGetRolesInternalServerError() *GetRolesInternalServerError {
|
|
return &GetRolesInternalServerError{}
|
|
}
|
|
|
|
/* GetRolesInternalServerError describes a response with status code 500, with default header values.
|
|
|
|
Server Internal Error
|
|
*/
|
|
type GetRolesInternalServerError struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
func (o *GetRolesInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /roles][%d] getRolesInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
func (o *GetRolesInternalServerError) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|