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 accounts
// 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"
)
// GetAccountsReader is a Reader for the GetAccounts structure.
type GetAccountsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * GetAccountsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewGetAccountsOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewGetAccountsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewGetAccountsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewGetAccountsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewGetAccountsUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewGetAccountsInternalServerError ( )
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 ( ) )
}
}
// NewGetAccountsOK creates a GetAccountsOK with default headers values
func NewGetAccountsOK ( ) * GetAccountsOK {
return & GetAccountsOK { }
}
2023-03-22 20:49:01 +00:00
/ *
GetAccountsOK describes a response with status code 200 , with default header values .
2021-08-05 19:37:53 +00:00
2023-04-01 23:56:22 +00:00
Response with Account objects
2021-08-05 19:37:53 +00:00
* /
type GetAccountsOK struct {
Payload * sfgate_models . AccountResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get accounts o k response has a 2xx status code
func ( o * GetAccountsOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this get accounts o k response has a 3xx status code
func ( o * GetAccountsOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get accounts o k response has a 4xx status code
func ( o * GetAccountsOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get accounts o k response has a 5xx status code
func ( o * GetAccountsOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get accounts o k response a status code equal to that given
func ( o * GetAccountsOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the get accounts o k response
func ( o * GetAccountsOK ) Code ( ) int {
return 200
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsOK ) Error ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetAccountsOK ) String ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsOK %+v" , 200 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsOK ) GetPayload ( ) * sfgate_models . AccountResponse {
return o . Payload
}
func ( o * GetAccountsOK ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( sfgate_models . AccountResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetAccountsUnauthorized creates a GetAccountsUnauthorized with default headers values
func NewGetAccountsUnauthorized ( ) * GetAccountsUnauthorized {
return & GetAccountsUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
GetAccountsUnauthorized 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 GetAccountsUnauthorized struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get accounts unauthorized response has a 2xx status code
func ( o * GetAccountsUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get accounts unauthorized response has a 3xx status code
func ( o * GetAccountsUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get accounts unauthorized response has a 4xx status code
func ( o * GetAccountsUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get accounts unauthorized response has a 5xx status code
func ( o * GetAccountsUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get accounts unauthorized response a status code equal to that given
func ( o * GetAccountsUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the get accounts unauthorized response
func ( o * GetAccountsUnauthorized ) Code ( ) int {
return 401
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetAccountsUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsUnauthorized %+v" , 401 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsUnauthorized ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * GetAccountsUnauthorized ) 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
}
// NewGetAccountsForbidden creates a GetAccountsForbidden with default headers values
func NewGetAccountsForbidden ( ) * GetAccountsForbidden {
return & GetAccountsForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
GetAccountsForbidden 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 GetAccountsForbidden struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get accounts forbidden response has a 2xx status code
func ( o * GetAccountsForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get accounts forbidden response has a 3xx status code
func ( o * GetAccountsForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get accounts forbidden response has a 4xx status code
func ( o * GetAccountsForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get accounts forbidden response has a 5xx status code
func ( o * GetAccountsForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get accounts forbidden response a status code equal to that given
func ( o * GetAccountsForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the get accounts forbidden response
func ( o * GetAccountsForbidden ) Code ( ) int {
return 403
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetAccountsForbidden ) String ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsForbidden %+v" , 403 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsForbidden ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * GetAccountsForbidden ) 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
}
// NewGetAccountsNotFound creates a GetAccountsNotFound with default headers values
func NewGetAccountsNotFound ( ) * GetAccountsNotFound {
return & GetAccountsNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
GetAccountsNotFound describes a response with status code 404 , with default header values .
2021-08-05 19:37:53 +00:00
Resource was not found
* /
type GetAccountsNotFound struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get accounts not found response has a 2xx status code
func ( o * GetAccountsNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get accounts not found response has a 3xx status code
func ( o * GetAccountsNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get accounts not found response has a 4xx status code
func ( o * GetAccountsNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get accounts not found response has a 5xx status code
func ( o * GetAccountsNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get accounts not found response a status code equal to that given
func ( o * GetAccountsNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the get accounts not found response
func ( o * GetAccountsNotFound ) Code ( ) int {
return 404
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetAccountsNotFound ) String ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsNotFound %+v" , 404 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsNotFound ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * GetAccountsNotFound ) 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
}
// NewGetAccountsUnprocessableEntity creates a GetAccountsUnprocessableEntity with default headers values
func NewGetAccountsUnprocessableEntity ( ) * GetAccountsUnprocessableEntity {
return & GetAccountsUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
GetAccountsUnprocessableEntity 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 GetAccountsUnprocessableEntity struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get accounts unprocessable entity response has a 2xx status code
func ( o * GetAccountsUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get accounts unprocessable entity response has a 3xx status code
func ( o * GetAccountsUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get accounts unprocessable entity response has a 4xx status code
func ( o * GetAccountsUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get accounts unprocessable entity response has a 5xx status code
func ( o * GetAccountsUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get accounts unprocessable entity response a status code equal to that given
func ( o * GetAccountsUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the get accounts unprocessable entity response
func ( o * GetAccountsUnprocessableEntity ) Code ( ) int {
return 422
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetAccountsUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsUnprocessableEntity ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * GetAccountsUnprocessableEntity ) 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
}
// NewGetAccountsInternalServerError creates a GetAccountsInternalServerError with default headers values
func NewGetAccountsInternalServerError ( ) * GetAccountsInternalServerError {
return & GetAccountsInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
GetAccountsInternalServerError describes a response with status code 500 , with default header values .
2021-08-05 19:37:53 +00:00
Server Internal Error
* /
type GetAccountsInternalServerError struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get accounts internal server error response has a 2xx status code
func ( o * GetAccountsInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get accounts internal server error response has a 3xx status code
func ( o * GetAccountsInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get accounts internal server error response has a 4xx status code
func ( o * GetAccountsInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get accounts internal server error response has a 5xx status code
func ( o * GetAccountsInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this get accounts internal server error response a status code equal to that given
func ( o * GetAccountsInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the get accounts internal server error response
func ( o * GetAccountsInternalServerError ) Code ( ) int {
return 500
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetAccountsInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[GET /accounts][%d] getAccountsInternalServerError %+v" , 500 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * GetAccountsInternalServerError ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * GetAccountsInternalServerError ) 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
}