lib/api/sfgate/sfgate_client/roles/get_roles_responses.go

476 lines
14 KiB
Go
Raw Normal View History

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
import (
"encoding/json"
stderrors "errors"
2021-08-05 19:37:53 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
2021-08-05 19:37:53 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// 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) (any, error) {
2021-08-05 19:37:53 +00:00
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("[GET /roles] getRoles", response, response.Code())
2021-08-05 19:37:53 +00:00
}
}
// 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.
//
// 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 {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesOK %s", 200, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetRolesOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesOK %s", 200, payload)
2023-03-22 20:49:01 +00:00
}
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 && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
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
2021-08-05 19:37:53 +00:00
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 {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesUnauthorized %s", 401, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetRolesUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
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 && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
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
2021-08-05 19:37:53 +00:00
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 {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesForbidden %s", 403, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetRolesForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
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 && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
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
2021-08-05 19:37:53 +00:00
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 {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesNotFound %s", 404, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetRolesNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
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 && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
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
2021-08-05 19:37:53 +00:00
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 {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesUnprocessableEntity %s", 422, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetRolesUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesUnprocessableEntity %s", 422, payload)
2023-03-22 20:49:01 +00:00
}
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 && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
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
2021-08-05 19:37:53 +00:00
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 {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesInternalServerError %s", 500, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetRolesInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /roles][%d] getRolesInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
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 && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
return err
}
return nil
}