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
package contacts
// 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-01 00:08:25 +00:00
"code.tnxs.net/vernonkeenan/lib/api/crm/crm_models"
2021-07-31 03:05:02 +00:00
)
// PostContactsReader is a Reader for the PostContacts structure.
type PostContactsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * PostContactsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewPostContactsOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewPostContactsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewPostContactsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewPostContactsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewPostContactsUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewPostContactsInternalServerError ( )
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 ( ) )
}
}
// NewPostContactsOK creates a PostContactsOK with default headers values
func NewPostContactsOK ( ) * PostContactsOK {
return & PostContactsOK { }
}
2023-03-22 20:49:01 +00:00
/ *
PostContactsOK describes a response with status code 200 , with default header values .
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
Response with an array of Contact objects
2021-07-31 03:05:02 +00:00
* /
type PostContactsOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload * crm_models . ContactResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contacts o k response has a 2xx status code
func ( o * PostContactsOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this post contacts o k response has a 3xx status code
func ( o * PostContactsOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this post contacts o k response has a 4xx status code
func ( o * PostContactsOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this post contacts o k response has a 5xx status code
func ( o * PostContactsOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this post contacts o k response a status code equal to that given
func ( o * PostContactsOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the post contacts o k response
func ( o * PostContactsOK ) Code ( ) int {
return 200
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsOK ) Error ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PostContactsOK ) String ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsOK %+v" , 200 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsOK ) GetPayload ( ) * crm_models . ContactResponse {
return o . Payload
}
func ( o * PostContactsOK ) 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 . ContactResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostContactsUnauthorized creates a PostContactsUnauthorized with default headers values
func NewPostContactsUnauthorized ( ) * PostContactsUnauthorized {
return & PostContactsUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
PostContactsUnauthorized 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
* /
type PostContactsUnauthorized struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contacts unauthorized response has a 2xx status code
func ( o * PostContactsUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this post contacts unauthorized response has a 3xx status code
func ( o * PostContactsUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this post contacts unauthorized response has a 4xx status code
func ( o * PostContactsUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this post contacts unauthorized response has a 5xx status code
func ( o * PostContactsUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this post contacts unauthorized response a status code equal to that given
func ( o * PostContactsUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the post contacts unauthorized response
func ( o * PostContactsUnauthorized ) Code ( ) int {
return 401
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PostContactsUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsUnauthorized %+v" , 401 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsUnauthorized ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PostContactsUnauthorized ) 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 && err != io . EOF {
return err
}
return nil
}
// NewPostContactsForbidden creates a PostContactsForbidden with default headers values
func NewPostContactsForbidden ( ) * PostContactsForbidden {
return & PostContactsForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
PostContactsForbidden describes a response with status code 403 , with default header values .
2021-07-31 03:05:02 +00:00
Access forbidden , account lacks access
* /
type PostContactsForbidden struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contacts forbidden response has a 2xx status code
func ( o * PostContactsForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this post contacts forbidden response has a 3xx status code
func ( o * PostContactsForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this post contacts forbidden response has a 4xx status code
func ( o * PostContactsForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this post contacts forbidden response has a 5xx status code
func ( o * PostContactsForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this post contacts forbidden response a status code equal to that given
func ( o * PostContactsForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the post contacts forbidden response
func ( o * PostContactsForbidden ) Code ( ) int {
return 403
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PostContactsForbidden ) String ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsForbidden %+v" , 403 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsForbidden ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PostContactsForbidden ) 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 && err != io . EOF {
return err
}
return nil
}
// NewPostContactsNotFound creates a PostContactsNotFound with default headers values
func NewPostContactsNotFound ( ) * PostContactsNotFound {
return & PostContactsNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
PostContactsNotFound describes a response with status code 404 , with default header values .
2021-07-31 03:05:02 +00:00
Resource was not found
* /
type PostContactsNotFound struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contacts not found response has a 2xx status code
func ( o * PostContactsNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this post contacts not found response has a 3xx status code
func ( o * PostContactsNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this post contacts not found response has a 4xx status code
func ( o * PostContactsNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this post contacts not found response has a 5xx status code
func ( o * PostContactsNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this post contacts not found response a status code equal to that given
func ( o * PostContactsNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the post contacts not found response
func ( o * PostContactsNotFound ) Code ( ) int {
return 404
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PostContactsNotFound ) String ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsNotFound %+v" , 404 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsNotFound ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PostContactsNotFound ) 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 && err != io . EOF {
return err
}
return nil
}
// NewPostContactsUnprocessableEntity creates a PostContactsUnprocessableEntity with default headers values
func NewPostContactsUnprocessableEntity ( ) * PostContactsUnprocessableEntity {
return & PostContactsUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
PostContactsUnprocessableEntity 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
* /
type PostContactsUnprocessableEntity struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contacts unprocessable entity response has a 2xx status code
func ( o * PostContactsUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this post contacts unprocessable entity response has a 3xx status code
func ( o * PostContactsUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this post contacts unprocessable entity response has a 4xx status code
func ( o * PostContactsUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this post contacts unprocessable entity response has a 5xx status code
func ( o * PostContactsUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this post contacts unprocessable entity response a status code equal to that given
func ( o * PostContactsUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the post contacts unprocessable entity response
func ( o * PostContactsUnprocessableEntity ) Code ( ) int {
return 422
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PostContactsUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsUnprocessableEntity ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PostContactsUnprocessableEntity ) 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 && err != io . EOF {
return err
}
return nil
}
// NewPostContactsInternalServerError creates a PostContactsInternalServerError with default headers values
func NewPostContactsInternalServerError ( ) * PostContactsInternalServerError {
return & PostContactsInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
PostContactsInternalServerError describes a response with status code 500 , with default header values .
2021-07-31 03:05:02 +00:00
Server Internal Error
* /
type PostContactsInternalServerError struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post contacts internal server error response has a 2xx status code
func ( o * PostContactsInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this post contacts internal server error response has a 3xx status code
func ( o * PostContactsInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this post contacts internal server error response has a 4xx status code
func ( o * PostContactsInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this post contacts internal server error response has a 5xx status code
func ( o * PostContactsInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this post contacts internal server error response a status code equal to that given
func ( o * PostContactsInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the post contacts internal server error response
func ( o * PostContactsInternalServerError ) Code ( ) int {
return 500
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PostContactsInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[POST /contacts][%d] postContactsInternalServerError %+v" , 500 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PostContactsInternalServerError ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PostContactsInternalServerError ) 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 && err != io . EOF {
return err
}
return nil
}