lib/api/research/research_client/accounts/post_accounts_responses.go

324 lines
9.5 KiB
Go
Raw Permalink Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2021-08-14 22:34:08 +00:00
package accounts
2021-07-31 03:05:02 +00:00
// 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"
2021-08-14 22:34:08 +00:00
"code.tnxs.net/vernonkeenan/lib/api/research/research_models"
2021-07-31 03:05:02 +00:00
)
2021-08-14 22:34:08 +00:00
// PostAccountsReader is a Reader for the PostAccounts structure.
type PostAccountsReader struct {
2021-07-31 03:05:02 +00:00
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
2021-08-14 22:34:08 +00:00
func (o *PostAccountsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
2021-07-31 03:05:02 +00:00
switch response.Code() {
case 200:
2021-08-14 22:34:08 +00:00
result := NewPostAccountsOK()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
2021-08-14 22:34:08 +00:00
result := NewPostAccountsUnauthorized()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
2021-08-14 22:34:08 +00:00
result := NewPostAccountsForbidden()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
2021-08-14 22:34:08 +00:00
result := NewPostAccountsNotFound()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
2021-08-14 22:34:08 +00:00
result := NewPostAccountsUnprocessableEntity()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
2021-08-14 22:34:08 +00:00
result := NewPostAccountsInternalServerError()
2021-07-31 03:05:02 +00:00
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())
}
}
2021-08-14 22:34:08 +00:00
// NewPostAccountsOK creates a PostAccountsOK with default headers values
func NewPostAccountsOK() *PostAccountsOK {
return &PostAccountsOK{}
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
/* PostAccountsOK describes a response with status code 200, with default header values.
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
Taxnexus Response with Account objects with Contacts
2021-07-31 03:05:02 +00:00
*/
2021-08-14 22:34:08 +00:00
type PostAccountsOK struct {
2021-07-31 03:05:02 +00:00
AccessControlAllowOrigin string
CacheControl string
2021-08-14 22:34:08 +00:00
Payload *research_models.AccountResponse
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsOK) Error() string {
return fmt.Sprintf("[POST /accounts][%d] postAccountsOK %+v", 200, o.Payload)
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsOK) GetPayload() *research_models.AccountResponse {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
// hydrates response header Cache-Control
hdrCacheControl := response.GetHeader("Cache-Control")
if hdrCacheControl != "" {
o.CacheControl = hdrCacheControl
}
2021-08-14 22:34:08 +00:00
o.Payload = new(research_models.AccountResponse)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostAccountsUnauthorized creates a PostAccountsUnauthorized with default headers values
func NewPostAccountsUnauthorized() *PostAccountsUnauthorized {
return &PostAccountsUnauthorized{}
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
/* PostAccountsUnauthorized describes a response with status code 401, with default header values.
2021-07-31 03:05:02 +00:00
Access unauthorized, invalid API-KEY was used
*/
2021-08-14 22:34:08 +00:00
type PostAccountsUnauthorized struct {
2021-07-31 03:05:02 +00:00
AccessControlAllowOrigin string
2021-08-14 22:34:08 +00:00
Payload *research_models.Error
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsUnauthorized) Error() string {
return fmt.Sprintf("[POST /accounts][%d] postAccountsUnauthorized %+v", 401, o.Payload)
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsUnauthorized) GetPayload() *research_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2021-08-14 22:34:08 +00:00
o.Payload = new(research_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostAccountsForbidden creates a PostAccountsForbidden with default headers values
func NewPostAccountsForbidden() *PostAccountsForbidden {
return &PostAccountsForbidden{}
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
/* PostAccountsForbidden describes a response with status code 403, with default header values.
2021-07-31 03:05:02 +00:00
Access forbidden, account lacks access
*/
2021-08-14 22:34:08 +00:00
type PostAccountsForbidden struct {
2021-07-31 03:05:02 +00:00
AccessControlAllowOrigin string
2021-08-14 22:34:08 +00:00
Payload *research_models.Error
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsForbidden) Error() string {
return fmt.Sprintf("[POST /accounts][%d] postAccountsForbidden %+v", 403, o.Payload)
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsForbidden) GetPayload() *research_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2021-08-14 22:34:08 +00:00
o.Payload = new(research_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostAccountsNotFound creates a PostAccountsNotFound with default headers values
func NewPostAccountsNotFound() *PostAccountsNotFound {
return &PostAccountsNotFound{}
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
/* PostAccountsNotFound describes a response with status code 404, with default header values.
2021-07-31 03:05:02 +00:00
Resource was not found
*/
2021-08-14 22:34:08 +00:00
type PostAccountsNotFound struct {
2021-07-31 03:05:02 +00:00
AccessControlAllowOrigin string
2021-08-14 22:34:08 +00:00
Payload *research_models.Error
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsNotFound) Error() string {
return fmt.Sprintf("[POST /accounts][%d] postAccountsNotFound %+v", 404, o.Payload)
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsNotFound) GetPayload() *research_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2021-08-14 22:34:08 +00:00
o.Payload = new(research_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostAccountsUnprocessableEntity creates a PostAccountsUnprocessableEntity with default headers values
func NewPostAccountsUnprocessableEntity() *PostAccountsUnprocessableEntity {
return &PostAccountsUnprocessableEntity{}
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
/* PostAccountsUnprocessableEntity describes a response with status code 422, with default header values.
2021-07-31 03:05:02 +00:00
Unprocessable Entity, likely a bad parameter
*/
2021-08-14 22:34:08 +00:00
type PostAccountsUnprocessableEntity struct {
2021-07-31 03:05:02 +00:00
AccessControlAllowOrigin string
2021-08-14 22:34:08 +00:00
Payload *research_models.Error
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsUnprocessableEntity) Error() string {
return fmt.Sprintf("[POST /accounts][%d] postAccountsUnprocessableEntity %+v", 422, o.Payload)
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsUnprocessableEntity) GetPayload() *research_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2021-08-14 22:34:08 +00:00
o.Payload = new(research_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostAccountsInternalServerError creates a PostAccountsInternalServerError with default headers values
func NewPostAccountsInternalServerError() *PostAccountsInternalServerError {
return &PostAccountsInternalServerError{}
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
/* PostAccountsInternalServerError describes a response with status code 500, with default header values.
2021-07-31 03:05:02 +00:00
Server Internal Error
*/
2021-08-14 22:34:08 +00:00
type PostAccountsInternalServerError struct {
2021-07-31 03:05:02 +00:00
AccessControlAllowOrigin string
2021-08-14 22:34:08 +00:00
Payload *research_models.Error
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsInternalServerError) Error() string {
return fmt.Sprintf("[POST /accounts][%d] postAccountsInternalServerError %+v", 500, o.Payload)
2021-07-31 03:05:02 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsInternalServerError) GetPayload() *research_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PostAccountsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2021-08-14 22:34:08 +00:00
o.Payload = new(research_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}