mirror of https://github.com/vernonkeenan/lib
478 lines
14 KiB
Go
478 lines
14 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 users
|
|
|
|
// 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"
|
|
)
|
|
|
|
// GetUsersReader is a Reader for the GetUsers structure.
|
|
type GetUsersReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetUsersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetUsersOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 401:
|
|
result := NewGetUsersUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 403:
|
|
result := NewGetUsersForbidden()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 404:
|
|
result := NewGetUsersNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 422:
|
|
result := NewGetUsersUnprocessableEntity()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 500:
|
|
result := NewGetUsersInternalServerError()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewGetUsersOK creates a GetUsersOK with default headers values
|
|
func NewGetUsersOK() *GetUsersOK {
|
|
return &GetUsersOK{}
|
|
}
|
|
|
|
/*
|
|
GetUsersOK describes a response with status code 200, with default header values.
|
|
|
|
Response with User objects
|
|
*/
|
|
type GetUsersOK struct {
|
|
Payload *sfgate_models.UserResponse
|
|
}
|
|
|
|
// IsSuccess returns true when this get users o k response has a 2xx status code
|
|
func (o *GetUsersOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this get users o k response has a 3xx status code
|
|
func (o *GetUsersOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get users o k response has a 4xx status code
|
|
func (o *GetUsersOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get users o k response has a 5xx status code
|
|
func (o *GetUsersOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get users o k response a status code equal to that given
|
|
func (o *GetUsersOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the get users o k response
|
|
func (o *GetUsersOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *GetUsersOK) Error() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersOK) String() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersOK) GetPayload() *sfgate_models.UserResponse {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetUsersOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.UserResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetUsersUnauthorized creates a GetUsersUnauthorized with default headers values
|
|
func NewGetUsersUnauthorized() *GetUsersUnauthorized {
|
|
return &GetUsersUnauthorized{}
|
|
}
|
|
|
|
/*
|
|
GetUsersUnauthorized describes a response with status code 401, with default header values.
|
|
|
|
Access unauthorized, invalid API-KEY was used
|
|
*/
|
|
type GetUsersUnauthorized struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get users unauthorized response has a 2xx status code
|
|
func (o *GetUsersUnauthorized) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get users unauthorized response has a 3xx status code
|
|
func (o *GetUsersUnauthorized) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get users unauthorized response has a 4xx status code
|
|
func (o *GetUsersUnauthorized) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get users unauthorized response has a 5xx status code
|
|
func (o *GetUsersUnauthorized) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get users unauthorized response a status code equal to that given
|
|
func (o *GetUsersUnauthorized) IsCode(code int) bool {
|
|
return code == 401
|
|
}
|
|
|
|
// Code gets the status code for the get users unauthorized response
|
|
func (o *GetUsersUnauthorized) Code() int {
|
|
return 401
|
|
}
|
|
|
|
func (o *GetUsersUnauthorized) Error() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersUnauthorized) String() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersUnauthorized) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetUsersUnauthorized) 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
|
|
}
|
|
|
|
// NewGetUsersForbidden creates a GetUsersForbidden with default headers values
|
|
func NewGetUsersForbidden() *GetUsersForbidden {
|
|
return &GetUsersForbidden{}
|
|
}
|
|
|
|
/*
|
|
GetUsersForbidden describes a response with status code 403, with default header values.
|
|
|
|
Access forbidden, account lacks access
|
|
*/
|
|
type GetUsersForbidden struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get users forbidden response has a 2xx status code
|
|
func (o *GetUsersForbidden) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get users forbidden response has a 3xx status code
|
|
func (o *GetUsersForbidden) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get users forbidden response has a 4xx status code
|
|
func (o *GetUsersForbidden) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get users forbidden response has a 5xx status code
|
|
func (o *GetUsersForbidden) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get users forbidden response a status code equal to that given
|
|
func (o *GetUsersForbidden) IsCode(code int) bool {
|
|
return code == 403
|
|
}
|
|
|
|
// Code gets the status code for the get users forbidden response
|
|
func (o *GetUsersForbidden) Code() int {
|
|
return 403
|
|
}
|
|
|
|
func (o *GetUsersForbidden) Error() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersForbidden) String() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersForbidden) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetUsersForbidden) 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
|
|
}
|
|
|
|
// NewGetUsersNotFound creates a GetUsersNotFound with default headers values
|
|
func NewGetUsersNotFound() *GetUsersNotFound {
|
|
return &GetUsersNotFound{}
|
|
}
|
|
|
|
/*
|
|
GetUsersNotFound describes a response with status code 404, with default header values.
|
|
|
|
Resource was not found
|
|
*/
|
|
type GetUsersNotFound struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get users not found response has a 2xx status code
|
|
func (o *GetUsersNotFound) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get users not found response has a 3xx status code
|
|
func (o *GetUsersNotFound) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get users not found response has a 4xx status code
|
|
func (o *GetUsersNotFound) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get users not found response has a 5xx status code
|
|
func (o *GetUsersNotFound) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get users not found response a status code equal to that given
|
|
func (o *GetUsersNotFound) IsCode(code int) bool {
|
|
return code == 404
|
|
}
|
|
|
|
// Code gets the status code for the get users not found response
|
|
func (o *GetUsersNotFound) Code() int {
|
|
return 404
|
|
}
|
|
|
|
func (o *GetUsersNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersNotFound) String() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersNotFound) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetUsersNotFound) 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
|
|
}
|
|
|
|
// NewGetUsersUnprocessableEntity creates a GetUsersUnprocessableEntity with default headers values
|
|
func NewGetUsersUnprocessableEntity() *GetUsersUnprocessableEntity {
|
|
return &GetUsersUnprocessableEntity{}
|
|
}
|
|
|
|
/*
|
|
GetUsersUnprocessableEntity describes a response with status code 422, with default header values.
|
|
|
|
Unprocessable Entity, likely a bad parameter
|
|
*/
|
|
type GetUsersUnprocessableEntity struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get users unprocessable entity response has a 2xx status code
|
|
func (o *GetUsersUnprocessableEntity) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get users unprocessable entity response has a 3xx status code
|
|
func (o *GetUsersUnprocessableEntity) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get users unprocessable entity response has a 4xx status code
|
|
func (o *GetUsersUnprocessableEntity) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get users unprocessable entity response has a 5xx status code
|
|
func (o *GetUsersUnprocessableEntity) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get users unprocessable entity response a status code equal to that given
|
|
func (o *GetUsersUnprocessableEntity) IsCode(code int) bool {
|
|
return code == 422
|
|
}
|
|
|
|
// Code gets the status code for the get users unprocessable entity response
|
|
func (o *GetUsersUnprocessableEntity) Code() int {
|
|
return 422
|
|
}
|
|
|
|
func (o *GetUsersUnprocessableEntity) Error() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersUnprocessableEntity) String() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersUnprocessableEntity) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetUsersUnprocessableEntity) 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
|
|
}
|
|
|
|
// NewGetUsersInternalServerError creates a GetUsersInternalServerError with default headers values
|
|
func NewGetUsersInternalServerError() *GetUsersInternalServerError {
|
|
return &GetUsersInternalServerError{}
|
|
}
|
|
|
|
/*
|
|
GetUsersInternalServerError describes a response with status code 500, with default header values.
|
|
|
|
Server Internal Error
|
|
*/
|
|
type GetUsersInternalServerError struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get users internal server error response has a 2xx status code
|
|
func (o *GetUsersInternalServerError) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get users internal server error response has a 3xx status code
|
|
func (o *GetUsersInternalServerError) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get users internal server error response has a 4xx status code
|
|
func (o *GetUsersInternalServerError) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get users internal server error response has a 5xx status code
|
|
func (o *GetUsersInternalServerError) IsServerError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsCode returns true when this get users internal server error response a status code equal to that given
|
|
func (o *GetUsersInternalServerError) IsCode(code int) bool {
|
|
return code == 500
|
|
}
|
|
|
|
// Code gets the status code for the get users internal server error response
|
|
func (o *GetUsersInternalServerError) Code() int {
|
|
return 500
|
|
}
|
|
|
|
func (o *GetUsersInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersInternalServerError) String() string {
|
|
return fmt.Sprintf("[GET /users][%d] getUsersInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetUsersInternalServerError) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetUsersInternalServerError) 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
|
|
}
|