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
)
// GetLeadsReader is a Reader for the GetLeads structure.
type GetLeadsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * GetLeadsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewGetLeadsOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewGetLeadsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewGetLeadsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewGetLeadsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewGetLeadsUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewGetLeadsInternalServerError ( )
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 ( ) )
}
}
// NewGetLeadsOK creates a GetLeadsOK with default headers values
func NewGetLeadsOK ( ) * GetLeadsOK {
return & GetLeadsOK { }
}
2023-03-22 20:49:01 +00:00
/ *
GetLeadsOK 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 GetLeadsOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload * crm_models . LeadResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get leads o k response has a 2xx status code
func ( o * GetLeadsOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this get leads o k response has a 3xx status code
func ( o * GetLeadsOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get leads o k response has a 4xx status code
func ( o * GetLeadsOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get leads o k response has a 5xx status code
func ( o * GetLeadsOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get leads o k response a status code equal to that given
func ( o * GetLeadsOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the get leads o k response
func ( o * GetLeadsOK ) Code ( ) int {
return 200
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsOK ) Error ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetLeadsOK ) String ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsOK %+v" , 200 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsOK ) GetPayload ( ) * crm_models . LeadResponse {
return o . Payload
}
func ( o * GetLeadsOK ) 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
}
// NewGetLeadsUnauthorized creates a GetLeadsUnauthorized with default headers values
func NewGetLeadsUnauthorized ( ) * GetLeadsUnauthorized {
return & GetLeadsUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
GetLeadsUnauthorized 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 GetLeadsUnauthorized struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get leads unauthorized response has a 2xx status code
func ( o * GetLeadsUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get leads unauthorized response has a 3xx status code
func ( o * GetLeadsUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get leads unauthorized response has a 4xx status code
func ( o * GetLeadsUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get leads unauthorized response has a 5xx status code
func ( o * GetLeadsUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get leads unauthorized response a status code equal to that given
func ( o * GetLeadsUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the get leads unauthorized response
func ( o * GetLeadsUnauthorized ) Code ( ) int {
return 401
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetLeadsUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsUnauthorized %+v" , 401 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsUnauthorized ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * GetLeadsUnauthorized ) 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
}
// NewGetLeadsForbidden creates a GetLeadsForbidden with default headers values
func NewGetLeadsForbidden ( ) * GetLeadsForbidden {
return & GetLeadsForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
GetLeadsForbidden 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 GetLeadsForbidden struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get leads forbidden response has a 2xx status code
func ( o * GetLeadsForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get leads forbidden response has a 3xx status code
func ( o * GetLeadsForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get leads forbidden response has a 4xx status code
func ( o * GetLeadsForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get leads forbidden response has a 5xx status code
func ( o * GetLeadsForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get leads forbidden response a status code equal to that given
func ( o * GetLeadsForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the get leads forbidden response
func ( o * GetLeadsForbidden ) Code ( ) int {
return 403
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetLeadsForbidden ) String ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsForbidden %+v" , 403 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsForbidden ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * GetLeadsForbidden ) 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
}
// NewGetLeadsNotFound creates a GetLeadsNotFound with default headers values
func NewGetLeadsNotFound ( ) * GetLeadsNotFound {
return & GetLeadsNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
GetLeadsNotFound describes a response with status code 404 , with default header values .
2021-07-31 03:05:02 +00:00
Resource was not found
* /
type GetLeadsNotFound struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get leads not found response has a 2xx status code
func ( o * GetLeadsNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get leads not found response has a 3xx status code
func ( o * GetLeadsNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get leads not found response has a 4xx status code
func ( o * GetLeadsNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get leads not found response has a 5xx status code
func ( o * GetLeadsNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get leads not found response a status code equal to that given
func ( o * GetLeadsNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the get leads not found response
func ( o * GetLeadsNotFound ) Code ( ) int {
return 404
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetLeadsNotFound ) String ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsNotFound %+v" , 404 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsNotFound ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * GetLeadsNotFound ) 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
}
// NewGetLeadsUnprocessableEntity creates a GetLeadsUnprocessableEntity with default headers values
func NewGetLeadsUnprocessableEntity ( ) * GetLeadsUnprocessableEntity {
return & GetLeadsUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
GetLeadsUnprocessableEntity 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 GetLeadsUnprocessableEntity struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get leads unprocessable entity response has a 2xx status code
func ( o * GetLeadsUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get leads unprocessable entity response has a 3xx status code
func ( o * GetLeadsUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get leads unprocessable entity response has a 4xx status code
func ( o * GetLeadsUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get leads unprocessable entity response has a 5xx status code
func ( o * GetLeadsUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get leads unprocessable entity response a status code equal to that given
func ( o * GetLeadsUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the get leads unprocessable entity response
func ( o * GetLeadsUnprocessableEntity ) Code ( ) int {
return 422
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetLeadsUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsUnprocessableEntity ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * GetLeadsUnprocessableEntity ) 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
}
// NewGetLeadsInternalServerError creates a GetLeadsInternalServerError with default headers values
func NewGetLeadsInternalServerError ( ) * GetLeadsInternalServerError {
return & GetLeadsInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
GetLeadsInternalServerError describes a response with status code 500 , with default header values .
2021-07-31 03:05:02 +00:00
Server Internal Error
* /
type GetLeadsInternalServerError struct {
AccessControlAllowOrigin string
Payload * crm_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get leads internal server error response has a 2xx status code
func ( o * GetLeadsInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get leads internal server error response has a 3xx status code
func ( o * GetLeadsInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get leads internal server error response has a 4xx status code
func ( o * GetLeadsInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get leads internal server error response has a 5xx status code
func ( o * GetLeadsInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this get leads internal server error response a status code equal to that given
func ( o * GetLeadsInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the get leads internal server error response
func ( o * GetLeadsInternalServerError ) Code ( ) int {
return 500
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetLeadsInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[GET /leads][%d] getLeadsInternalServerError %+v" , 500 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetLeadsInternalServerError ) GetPayload ( ) * crm_models . Error {
return o . Payload
}
func ( o * GetLeadsInternalServerError ) 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
}