lib/api/crm/crm_client/contracts/post_contracts_responses.go

538 lines
17 KiB
Go
Raw Normal View History

2022-05-28 19:45:41 +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 contracts
import (
"encoding/json"
stderrors "errors"
2022-05-28 19:45:41 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/crm/crm_models"
2022-05-28 19:45:41 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// PostContractsReader is a Reader for the PostContracts structure.
type PostContractsReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PostContractsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2022-05-28 19:45:41 +00:00
switch response.Code() {
case 200:
result := NewPostContractsOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPostContractsUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPostContractsForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPostContractsNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewPostContractsUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPostContractsInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[POST /contracts] postContracts", response, response.Code())
2022-05-28 19:45:41 +00:00
}
}
// NewPostContractsOK creates a PostContractsOK with default headers values
func NewPostContractsOK() *PostContractsOK {
return &PostContractsOK{}
}
// PostContractsOK describes a response with status code 200, with default header values.
//
// Response with an array of Contract objects
2022-05-28 19:45:41 +00:00
type PostContractsOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload *crm_models.ContractResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contracts o k response has a 2xx status code
func (o *PostContractsOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this post contracts o k response has a 3xx status code
func (o *PostContractsOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this post contracts o k response has a 4xx status code
func (o *PostContractsOK) IsClientError() bool {
return false
}
// IsServerError returns true when this post contracts o k response has a 5xx status code
func (o *PostContractsOK) IsServerError() bool {
return false
}
// IsCode returns true when this post contracts o k response a status code equal to that given
func (o *PostContractsOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the post contracts o k response
func (o *PostContractsOK) Code() int {
return 200
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsOK %s", 200, payload)
2022-05-28 19:45:41 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContractsOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsOK %s", 200, payload)
2023-03-22 20:49:01 +00:00
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsOK) GetPayload() *crm_models.ContractResponse {
return o.Payload
}
func (o *PostContractsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// 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
}
o.Payload = new(crm_models.ContractResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2022-05-28 19:45:41 +00:00
return err
}
return nil
}
// NewPostContractsUnauthorized creates a PostContractsUnauthorized with default headers values
func NewPostContractsUnauthorized() *PostContractsUnauthorized {
return &PostContractsUnauthorized{}
}
// PostContractsUnauthorized describes a response with status code 401, with default header values.
//
// Access unauthorized, invalid API-KEY was used
2022-05-28 19:45:41 +00:00
type PostContractsUnauthorized struct {
AccessControlAllowOrigin string
Payload *crm_models.Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contracts unauthorized response has a 2xx status code
func (o *PostContractsUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post contracts unauthorized response has a 3xx status code
func (o *PostContractsUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this post contracts unauthorized response has a 4xx status code
func (o *PostContractsUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this post contracts unauthorized response has a 5xx status code
func (o *PostContractsUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this post contracts unauthorized response a status code equal to that given
func (o *PostContractsUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the post contracts unauthorized response
func (o *PostContractsUnauthorized) Code() int {
return 401
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsUnauthorized %s", 401, payload)
2022-05-28 19:45:41 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContractsUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsUnauthorized) GetPayload() *crm_models.Error {
return o.Payload
}
func (o *PostContractsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o.Payload = new(crm_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2022-05-28 19:45:41 +00:00
return err
}
return nil
}
// NewPostContractsForbidden creates a PostContractsForbidden with default headers values
func NewPostContractsForbidden() *PostContractsForbidden {
return &PostContractsForbidden{}
}
// PostContractsForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
2022-05-28 19:45:41 +00:00
type PostContractsForbidden struct {
AccessControlAllowOrigin string
Payload *crm_models.Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contracts forbidden response has a 2xx status code
func (o *PostContractsForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post contracts forbidden response has a 3xx status code
func (o *PostContractsForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this post contracts forbidden response has a 4xx status code
func (o *PostContractsForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this post contracts forbidden response has a 5xx status code
func (o *PostContractsForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this post contracts forbidden response a status code equal to that given
func (o *PostContractsForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the post contracts forbidden response
func (o *PostContractsForbidden) Code() int {
return 403
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsForbidden %s", 403, payload)
2022-05-28 19:45:41 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContractsForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsForbidden) GetPayload() *crm_models.Error {
return o.Payload
}
func (o *PostContractsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o.Payload = new(crm_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2022-05-28 19:45:41 +00:00
return err
}
return nil
}
// NewPostContractsNotFound creates a PostContractsNotFound with default headers values
func NewPostContractsNotFound() *PostContractsNotFound {
return &PostContractsNotFound{}
}
// PostContractsNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2022-05-28 19:45:41 +00:00
type PostContractsNotFound struct {
AccessControlAllowOrigin string
Payload *crm_models.Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contracts not found response has a 2xx status code
func (o *PostContractsNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post contracts not found response has a 3xx status code
func (o *PostContractsNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this post contracts not found response has a 4xx status code
func (o *PostContractsNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this post contracts not found response has a 5xx status code
func (o *PostContractsNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this post contracts not found response a status code equal to that given
func (o *PostContractsNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the post contracts not found response
func (o *PostContractsNotFound) Code() int {
return 404
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsNotFound %s", 404, payload)
2022-05-28 19:45:41 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContractsNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsNotFound) GetPayload() *crm_models.Error {
return o.Payload
}
func (o *PostContractsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o.Payload = new(crm_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2022-05-28 19:45:41 +00:00
return err
}
return nil
}
// NewPostContractsUnprocessableEntity creates a PostContractsUnprocessableEntity with default headers values
func NewPostContractsUnprocessableEntity() *PostContractsUnprocessableEntity {
return &PostContractsUnprocessableEntity{}
}
// PostContractsUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
2022-05-28 19:45:41 +00:00
type PostContractsUnprocessableEntity struct {
AccessControlAllowOrigin string
Payload *crm_models.Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contracts unprocessable entity response has a 2xx status code
func (o *PostContractsUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post contracts unprocessable entity response has a 3xx status code
func (o *PostContractsUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this post contracts unprocessable entity response has a 4xx status code
func (o *PostContractsUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this post contracts unprocessable entity response has a 5xx status code
func (o *PostContractsUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this post contracts unprocessable entity response a status code equal to that given
func (o *PostContractsUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the post contracts unprocessable entity response
func (o *PostContractsUnprocessableEntity) Code() int {
return 422
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsUnprocessableEntity %s", 422, payload)
2022-05-28 19:45:41 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContractsUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsUnprocessableEntity %s", 422, payload)
2023-03-22 20:49:01 +00:00
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsUnprocessableEntity) GetPayload() *crm_models.Error {
return o.Payload
}
func (o *PostContractsUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o.Payload = new(crm_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2022-05-28 19:45:41 +00:00
return err
}
return nil
}
// NewPostContractsInternalServerError creates a PostContractsInternalServerError with default headers values
func NewPostContractsInternalServerError() *PostContractsInternalServerError {
return &PostContractsInternalServerError{}
}
// PostContractsInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2022-05-28 19:45:41 +00:00
type PostContractsInternalServerError struct {
AccessControlAllowOrigin string
Payload *crm_models.Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contracts internal server error response has a 2xx status code
func (o *PostContractsInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post contracts internal server error response has a 3xx status code
func (o *PostContractsInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this post contracts internal server error response has a 4xx status code
func (o *PostContractsInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this post contracts internal server error response has a 5xx status code
func (o *PostContractsInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this post contracts internal server error response a status code equal to that given
func (o *PostContractsInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the post contracts internal server error response
func (o *PostContractsInternalServerError) Code() int {
return 500
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsInternalServerError %s", 500, payload)
2022-05-28 19:45:41 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContractsInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contracts][%d] postContractsInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
2022-05-28 19:45:41 +00:00
func (o *PostContractsInternalServerError) GetPayload() *crm_models.Error {
return o.Payload
}
func (o *PostContractsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o.Payload = new(crm_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2022-05-28 19:45:41 +00:00
return err
}
return nil
}