2021-08-05 19:37:53 +00:00
// 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 { }
}
2023-03-22 20:49:01 +00:00
/ *
GetRolesOK describes a response with status code 200 , with default header values .
2021-08-05 19:37:53 +00:00
2023-03-28 17:47:34 +00:00
Response with Role objects
2021-08-05 19:37:53 +00:00
* /
type GetRolesOK struct {
Payload * sfgate_models . RoleResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get roles o k response has a 2xx status code
func ( o * GetRolesOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this get roles o k response has a 3xx status code
func ( o * GetRolesOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get roles o k response has a 4xx status code
func ( o * GetRolesOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get roles o k response has a 5xx status code
func ( o * GetRolesOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get roles o k response a status code equal to that given
func ( o * GetRolesOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the get roles o k response
func ( o * GetRolesOK ) Code ( ) int {
return 200
}
2021-08-05 19:37:53 +00:00
func ( o * GetRolesOK ) Error ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetRolesOK ) String ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesOK %+v" , 200 , o . Payload )
}
2021-08-05 19:37:53 +00:00
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 { }
}
2023-03-22 20:49:01 +00:00
/ *
GetRolesUnauthorized describes a response with status code 401 , with default header values .
2021-08-05 19:37:53 +00:00
Access unauthorized , invalid API - KEY was used
* /
type GetRolesUnauthorized struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get roles unauthorized response has a 2xx status code
func ( o * GetRolesUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get roles unauthorized response has a 3xx status code
func ( o * GetRolesUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get roles unauthorized response has a 4xx status code
func ( o * GetRolesUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get roles unauthorized response has a 5xx status code
func ( o * GetRolesUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get roles unauthorized response a status code equal to that given
func ( o * GetRolesUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the get roles unauthorized response
func ( o * GetRolesUnauthorized ) Code ( ) int {
return 401
}
2021-08-05 19:37:53 +00:00
func ( o * GetRolesUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetRolesUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesUnauthorized %+v" , 401 , o . Payload )
}
2021-08-05 19:37:53 +00:00
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 { }
}
2023-03-22 20:49:01 +00:00
/ *
GetRolesForbidden describes a response with status code 403 , with default header values .
2021-08-05 19:37:53 +00:00
Access forbidden , account lacks access
* /
type GetRolesForbidden struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get roles forbidden response has a 2xx status code
func ( o * GetRolesForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get roles forbidden response has a 3xx status code
func ( o * GetRolesForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get roles forbidden response has a 4xx status code
func ( o * GetRolesForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get roles forbidden response has a 5xx status code
func ( o * GetRolesForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get roles forbidden response a status code equal to that given
func ( o * GetRolesForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the get roles forbidden response
func ( o * GetRolesForbidden ) Code ( ) int {
return 403
}
2021-08-05 19:37:53 +00:00
func ( o * GetRolesForbidden ) Error ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetRolesForbidden ) String ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesForbidden %+v" , 403 , o . Payload )
}
2021-08-05 19:37:53 +00:00
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 { }
}
2023-03-22 20:49:01 +00:00
/ *
GetRolesNotFound describes a response with status code 404 , with default header values .
2021-08-05 19:37:53 +00:00
Resource was not found
* /
type GetRolesNotFound struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get roles not found response has a 2xx status code
func ( o * GetRolesNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get roles not found response has a 3xx status code
func ( o * GetRolesNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get roles not found response has a 4xx status code
func ( o * GetRolesNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get roles not found response has a 5xx status code
func ( o * GetRolesNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get roles not found response a status code equal to that given
func ( o * GetRolesNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the get roles not found response
func ( o * GetRolesNotFound ) Code ( ) int {
return 404
}
2021-08-05 19:37:53 +00:00
func ( o * GetRolesNotFound ) Error ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetRolesNotFound ) String ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesNotFound %+v" , 404 , o . Payload )
}
2021-08-05 19:37:53 +00:00
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 { }
}
2023-03-22 20:49:01 +00:00
/ *
GetRolesUnprocessableEntity describes a response with status code 422 , with default header values .
2021-08-05 19:37:53 +00:00
Unprocessable Entity , likely a bad parameter
* /
type GetRolesUnprocessableEntity struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get roles unprocessable entity response has a 2xx status code
func ( o * GetRolesUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get roles unprocessable entity response has a 3xx status code
func ( o * GetRolesUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get roles unprocessable entity response has a 4xx status code
func ( o * GetRolesUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get roles unprocessable entity response has a 5xx status code
func ( o * GetRolesUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get roles unprocessable entity response a status code equal to that given
func ( o * GetRolesUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the get roles unprocessable entity response
func ( o * GetRolesUnprocessableEntity ) Code ( ) int {
return 422
}
2021-08-05 19:37:53 +00:00
func ( o * GetRolesUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetRolesUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-08-05 19:37:53 +00:00
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 { }
}
2023-03-22 20:49:01 +00:00
/ *
GetRolesInternalServerError describes a response with status code 500 , with default header values .
2021-08-05 19:37:53 +00:00
Server Internal Error
* /
type GetRolesInternalServerError struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get roles internal server error response has a 2xx status code
func ( o * GetRolesInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get roles internal server error response has a 3xx status code
func ( o * GetRolesInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get roles internal server error response has a 4xx status code
func ( o * GetRolesInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get roles internal server error response has a 5xx status code
func ( o * GetRolesInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this get roles internal server error response a status code equal to that given
func ( o * GetRolesInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the get roles internal server error response
func ( o * GetRolesInternalServerError ) Code ( ) int {
return 500
}
2021-08-05 19:37:53 +00:00
func ( o * GetRolesInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetRolesInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[GET /roles][%d] getRolesInternalServerError %+v" , 500 , o . Payload )
}
2021-08-05 19:37:53 +00:00
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
}