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 leads
// 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
)
// PutLeadsReader is a Reader for the PutLeads structure.
type PutLeadsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * PutLeadsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewPutLeadsOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewPutLeadsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewPutLeadsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewPutLeadsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewPutLeadsUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewPutLeadsInternalServerError ( )
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 ( ) )
}
}
// NewPutLeadsOK creates a PutLeadsOK with default headers values
func NewPutLeadsOK ( ) * PutLeadsOK {
return & PutLeadsOK { }
}
2023-03-22 20:49:01 +00:00
/ *
PutLeadsOK 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 Lead objects
2021-07-31 03:05:02 +00:00
* /
type PutLeadsOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload * crm_models . LeadResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put leads o k response has a 2xx status code
func ( o * PutLeadsOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this put leads o k response has a 3xx status code
func ( o * PutLeadsOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put leads o k response has a 4xx status code
func ( o * PutLeadsOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this put leads o k response has a 5xx status code
func ( o * PutLeadsOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put leads o k response a status code equal to that given
func ( o * PutLeadsOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the put leads o k response
func ( o * PutLeadsOK ) Code ( ) int {
return 200
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsOK ) Error ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutLeadsOK ) String ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsOK %+v" , 200 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsOK ) GetPayload ( ) * crm_models . LeadResponse {
return o . Payload
}
func ( o * PutLeadsOK ) 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 . LeadResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPutLeadsUnauthorized creates a PutLeadsUnauthorized with default headers values
func NewPutLeadsUnauthorized ( ) * PutLeadsUnauthorized {
return & PutLeadsUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
PutLeadsUnauthorized 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 PutLeadsUnauthorized struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put leads unauthorized response has a 2xx status code
func ( o * PutLeadsUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put leads unauthorized response has a 3xx status code
func ( o * PutLeadsUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put leads unauthorized response has a 4xx status code
func ( o * PutLeadsUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put leads unauthorized response has a 5xx status code
func ( o * PutLeadsUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put leads unauthorized response a status code equal to that given
func ( o * PutLeadsUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the put leads unauthorized response
func ( o * PutLeadsUnauthorized ) Code ( ) int {
return 401
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutLeadsUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsUnauthorized %+v" , 401 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsUnauthorized ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PutLeadsUnauthorized ) 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
}
// NewPutLeadsForbidden creates a PutLeadsForbidden with default headers values
func NewPutLeadsForbidden ( ) * PutLeadsForbidden {
return & PutLeadsForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
PutLeadsForbidden 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 PutLeadsForbidden struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put leads forbidden response has a 2xx status code
func ( o * PutLeadsForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put leads forbidden response has a 3xx status code
func ( o * PutLeadsForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put leads forbidden response has a 4xx status code
func ( o * PutLeadsForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put leads forbidden response has a 5xx status code
func ( o * PutLeadsForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put leads forbidden response a status code equal to that given
func ( o * PutLeadsForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the put leads forbidden response
func ( o * PutLeadsForbidden ) Code ( ) int {
return 403
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutLeadsForbidden ) String ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsForbidden %+v" , 403 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsForbidden ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PutLeadsForbidden ) 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
}
// NewPutLeadsNotFound creates a PutLeadsNotFound with default headers values
func NewPutLeadsNotFound ( ) * PutLeadsNotFound {
return & PutLeadsNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
PutLeadsNotFound describes a response with status code 404 , with default header values .
2021-07-31 03:05:02 +00:00
Resource was not found
* /
type PutLeadsNotFound struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put leads not found response has a 2xx status code
func ( o * PutLeadsNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put leads not found response has a 3xx status code
func ( o * PutLeadsNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put leads not found response has a 4xx status code
func ( o * PutLeadsNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put leads not found response has a 5xx status code
func ( o * PutLeadsNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put leads not found response a status code equal to that given
func ( o * PutLeadsNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the put leads not found response
func ( o * PutLeadsNotFound ) Code ( ) int {
return 404
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutLeadsNotFound ) String ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsNotFound %+v" , 404 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsNotFound ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PutLeadsNotFound ) 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
}
// NewPutLeadsUnprocessableEntity creates a PutLeadsUnprocessableEntity with default headers values
func NewPutLeadsUnprocessableEntity ( ) * PutLeadsUnprocessableEntity {
return & PutLeadsUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
PutLeadsUnprocessableEntity 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 PutLeadsUnprocessableEntity struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put leads unprocessable entity response has a 2xx status code
func ( o * PutLeadsUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put leads unprocessable entity response has a 3xx status code
func ( o * PutLeadsUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put leads unprocessable entity response has a 4xx status code
func ( o * PutLeadsUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put leads unprocessable entity response has a 5xx status code
func ( o * PutLeadsUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put leads unprocessable entity response a status code equal to that given
func ( o * PutLeadsUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the put leads unprocessable entity response
func ( o * PutLeadsUnprocessableEntity ) Code ( ) int {
return 422
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutLeadsUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsUnprocessableEntity ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PutLeadsUnprocessableEntity ) 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
}
// NewPutLeadsInternalServerError creates a PutLeadsInternalServerError with default headers values
func NewPutLeadsInternalServerError ( ) * PutLeadsInternalServerError {
return & PutLeadsInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
PutLeadsInternalServerError describes a response with status code 500 , with default header values .
2021-07-31 03:05:02 +00:00
Server Internal Error
* /
type PutLeadsInternalServerError struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put leads internal server error response has a 2xx status code
func ( o * PutLeadsInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put leads internal server error response has a 3xx status code
func ( o * PutLeadsInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put leads internal server error response has a 4xx status code
func ( o * PutLeadsInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this put leads internal server error response has a 5xx status code
func ( o * PutLeadsInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this put leads internal server error response a status code equal to that given
func ( o * PutLeadsInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the put leads internal server error response
func ( o * PutLeadsInternalServerError ) Code ( ) int {
return 500
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutLeadsInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[PUT /leads][%d] putLeadsInternalServerError %+v" , 500 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * PutLeadsInternalServerError ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * PutLeadsInternalServerError ) 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
}