2021-01-08 17:40:28 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-01-19 16:58:40 +00:00
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
2021-01-08 17:40:28 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package coa
// 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-01-10 17:03:26 +00:00
"code.tnxs.net/taxnexus/lib/api/ledger/ledger_models"
2021-01-08 17:40:28 +00:00
)
// PostCoasReader is a Reader for the PostCoas structure.
type PostCoasReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * PostCoasReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewPostCoasOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewPostCoasUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewPostCoasForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewPostCoasNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewPostCoasUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewPostCoasInternalServerError ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
default :
2021-02-09 16:56:57 +00:00
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-01-08 17:40:28 +00:00
}
}
// NewPostCoasOK creates a PostCoasOK with default headers values
func NewPostCoasOK ( ) * PostCoasOK {
return & PostCoasOK { }
}
2021-02-09 16:56:57 +00:00
/ * PostCoasOK describes a response with status code 200 , with default header values .
2021-01-08 17:40:28 +00:00
Taxnexus Response with Chart of Accounts objects
* /
type PostCoasOK struct {
Payload * ledger_models . CoaResponse
}
func ( o * PostCoasOK ) Error ( ) string {
return fmt . Sprintf ( "[POST /coas][%d] postCoasOK %+v" , 200 , o . Payload )
}
func ( o * PostCoasOK ) GetPayload ( ) * ledger_models . CoaResponse {
return o . Payload
}
func ( o * PostCoasOK ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( ledger_models . CoaResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostCoasUnauthorized creates a PostCoasUnauthorized with default headers values
func NewPostCoasUnauthorized ( ) * PostCoasUnauthorized {
return & PostCoasUnauthorized { }
}
2021-02-09 16:56:57 +00:00
/ * PostCoasUnauthorized describes a response with status code 401 , with default header values .
2021-01-08 17:40:28 +00:00
Access Unauthorized , invalid API - KEY was used
* /
type PostCoasUnauthorized struct {
Payload * ledger_models . Error
}
func ( o * PostCoasUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[POST /coas][%d] postCoasUnauthorized %+v" , 401 , o . Payload )
}
func ( o * PostCoasUnauthorized ) GetPayload ( ) * ledger_models . Error {
return o . Payload
}
func ( o * PostCoasUnauthorized ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( ledger_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostCoasForbidden creates a PostCoasForbidden with default headers values
func NewPostCoasForbidden ( ) * PostCoasForbidden {
return & PostCoasForbidden { }
}
2021-02-09 16:56:57 +00:00
/ * PostCoasForbidden describes a response with status code 403 , with default header values .
2021-01-08 17:40:28 +00:00
Access forbidden , account lacks access
* /
type PostCoasForbidden struct {
Payload * ledger_models . Error
}
func ( o * PostCoasForbidden ) Error ( ) string {
return fmt . Sprintf ( "[POST /coas][%d] postCoasForbidden %+v" , 403 , o . Payload )
}
func ( o * PostCoasForbidden ) GetPayload ( ) * ledger_models . Error {
return o . Payload
}
func ( o * PostCoasForbidden ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( ledger_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostCoasNotFound creates a PostCoasNotFound with default headers values
func NewPostCoasNotFound ( ) * PostCoasNotFound {
return & PostCoasNotFound { }
}
2021-02-09 16:56:57 +00:00
/ * PostCoasNotFound describes a response with status code 404 , with default header values .
2021-01-08 17:40:28 +00:00
Resource was not found
* /
type PostCoasNotFound struct {
Payload * ledger_models . Error
}
func ( o * PostCoasNotFound ) Error ( ) string {
return fmt . Sprintf ( "[POST /coas][%d] postCoasNotFound %+v" , 404 , o . Payload )
}
func ( o * PostCoasNotFound ) GetPayload ( ) * ledger_models . Error {
return o . Payload
}
func ( o * PostCoasNotFound ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( ledger_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostCoasUnprocessableEntity creates a PostCoasUnprocessableEntity with default headers values
func NewPostCoasUnprocessableEntity ( ) * PostCoasUnprocessableEntity {
return & PostCoasUnprocessableEntity { }
}
2021-02-09 16:56:57 +00:00
/ * PostCoasUnprocessableEntity describes a response with status code 422 , with default header values .
2021-01-08 17:40:28 +00:00
Unprocessable Entity , likely a bad parameter
* /
type PostCoasUnprocessableEntity struct {
Payload * ledger_models . Error
}
func ( o * PostCoasUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[POST /coas][%d] postCoasUnprocessableEntity %+v" , 422 , o . Payload )
}
func ( o * PostCoasUnprocessableEntity ) GetPayload ( ) * ledger_models . Error {
return o . Payload
}
func ( o * PostCoasUnprocessableEntity ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( ledger_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostCoasInternalServerError creates a PostCoasInternalServerError with default headers values
func NewPostCoasInternalServerError ( ) * PostCoasInternalServerError {
return & PostCoasInternalServerError { }
}
2021-02-09 16:56:57 +00:00
/ * PostCoasInternalServerError describes a response with status code 500 , with default header values .
2021-01-08 17:40:28 +00:00
Server Internal Error
* /
type PostCoasInternalServerError struct {
Payload * ledger_models . Error
}
func ( o * PostCoasInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[POST /coas][%d] postCoasInternalServerError %+v" , 500 , o . Payload )
}
func ( o * PostCoasInternalServerError ) GetPayload ( ) * ledger_models . Error {
return o . Payload
}
func ( o * PostCoasInternalServerError ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( ledger_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}