mirror of https://github.com/vernonkeenan/lib
267 lines
7.0 KiB
Go
267 lines
7.0 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 role
|
|
|
|
// 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/auth0/auth0_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("unknown error", response, response.Code())
|
|
}
|
|
}
|
|
|
|
// NewGetRolesOK creates a GetRolesOK with default headers values
|
|
func NewGetRolesOK() *GetRolesOK {
|
|
return &GetRolesOK{}
|
|
}
|
|
|
|
/*GetRolesOK handles this case with default header values.
|
|
|
|
Taxnexus Response with User objects
|
|
*/
|
|
type GetRolesOK struct {
|
|
Payload []*auth0_models.User
|
|
}
|
|
|
|
func (o *GetRolesOK) Error() string {
|
|
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetRolesOK) GetPayload() []*auth0_models.User {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
// 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 handles this case with default header values.
|
|
|
|
Access Unauthorized, invalid API-KEY was used
|
|
*/
|
|
type GetRolesUnauthorized struct {
|
|
Payload *auth0_models.Error
|
|
}
|
|
|
|
func (o *GetRolesUnauthorized) Error() string {
|
|
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *GetRolesUnauthorized) GetPayload() *auth0_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(auth0_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 handles this case with default header values.
|
|
|
|
Access forbidden, account lacks access
|
|
*/
|
|
type GetRolesForbidden struct {
|
|
Payload *auth0_models.Error
|
|
}
|
|
|
|
func (o *GetRolesForbidden) Error() string {
|
|
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *GetRolesForbidden) GetPayload() *auth0_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(auth0_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 handles this case with default header values.
|
|
|
|
Resource was not found
|
|
*/
|
|
type GetRolesNotFound struct {
|
|
Payload *auth0_models.Error
|
|
}
|
|
|
|
func (o *GetRolesNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetRolesNotFound) GetPayload() *auth0_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(auth0_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 handles this case with default header values.
|
|
|
|
Unprocessable Entity, likely a bad parameter
|
|
*/
|
|
type GetRolesUnprocessableEntity struct {
|
|
Payload *auth0_models.Error
|
|
}
|
|
|
|
func (o *GetRolesUnprocessableEntity) Error() string {
|
|
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
|
|
func (o *GetRolesUnprocessableEntity) GetPayload() *auth0_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(auth0_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 handles this case with default header values.
|
|
|
|
Server Internal Error
|
|
*/
|
|
type GetRolesInternalServerError struct {
|
|
Payload *auth0_models.Error
|
|
}
|
|
|
|
func (o *GetRolesInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetRolesInternalServerError) GetPayload() *auth0_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetRolesInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(auth0_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|