mirror of https://github.com/vernonkeenan/lib
538 lines
16 KiB
Go
538 lines
16 KiB
Go
// 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 leads
|
|
|
|
import (
|
|
"encoding/json"
|
|
stderrors "errors"
|
|
"fmt"
|
|
"io"
|
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/crm/crm_models"
|
|
"github.com/go-openapi/runtime"
|
|
"github.com/go-openapi/strfmt"
|
|
)
|
|
|
|
// 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) (any, 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("[PUT /leads] putLeads", response, response.Code())
|
|
}
|
|
}
|
|
|
|
// NewPutLeadsOK creates a PutLeadsOK with default headers values
|
|
func NewPutLeadsOK() *PutLeadsOK {
|
|
return &PutLeadsOK{}
|
|
}
|
|
|
|
// PutLeadsOK describes a response with status code 200, with default header values.
|
|
//
|
|
// Response with an array of Lead objects
|
|
type PutLeadsOK struct {
|
|
AccessControlAllowOrigin string
|
|
CacheControl string
|
|
|
|
Payload *crm_models.LeadResponse
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
func (o *PutLeadsOK) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *PutLeadsOK) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsOK %s", 200, payload)
|
|
}
|
|
|
|
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 && !stderrors.Is(err, io.EOF) {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutLeadsUnauthorized creates a PutLeadsUnauthorized with default headers values
|
|
func NewPutLeadsUnauthorized() *PutLeadsUnauthorized {
|
|
return &PutLeadsUnauthorized{}
|
|
}
|
|
|
|
// PutLeadsUnauthorized describes a response with status code 401, with default header values.
|
|
//
|
|
// Access unauthorized, invalid API-KEY was used
|
|
type PutLeadsUnauthorized struct {
|
|
AccessControlAllowOrigin string
|
|
|
|
Payload *crm_models.Error
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
func (o *PutLeadsUnauthorized) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsUnauthorized %s", 401, payload)
|
|
}
|
|
|
|
func (o *PutLeadsUnauthorized) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsUnauthorized %s", 401, payload)
|
|
}
|
|
|
|
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 && !stderrors.Is(err, io.EOF) {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutLeadsForbidden creates a PutLeadsForbidden with default headers values
|
|
func NewPutLeadsForbidden() *PutLeadsForbidden {
|
|
return &PutLeadsForbidden{}
|
|
}
|
|
|
|
// PutLeadsForbidden describes a response with status code 403, with default header values.
|
|
//
|
|
// Access forbidden, account lacks access
|
|
type PutLeadsForbidden struct {
|
|
AccessControlAllowOrigin string
|
|
|
|
Payload *crm_models.Error
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
func (o *PutLeadsForbidden) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsForbidden %s", 403, payload)
|
|
}
|
|
|
|
func (o *PutLeadsForbidden) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsForbidden %s", 403, payload)
|
|
}
|
|
|
|
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 && !stderrors.Is(err, io.EOF) {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutLeadsNotFound creates a PutLeadsNotFound with default headers values
|
|
func NewPutLeadsNotFound() *PutLeadsNotFound {
|
|
return &PutLeadsNotFound{}
|
|
}
|
|
|
|
// PutLeadsNotFound describes a response with status code 404, with default header values.
|
|
//
|
|
// Resource was not found
|
|
type PutLeadsNotFound struct {
|
|
AccessControlAllowOrigin string
|
|
|
|
Payload *crm_models.Error
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
func (o *PutLeadsNotFound) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsNotFound %s", 404, payload)
|
|
}
|
|
|
|
func (o *PutLeadsNotFound) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsNotFound %s", 404, payload)
|
|
}
|
|
|
|
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 && !stderrors.Is(err, io.EOF) {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutLeadsUnprocessableEntity creates a PutLeadsUnprocessableEntity with default headers values
|
|
func NewPutLeadsUnprocessableEntity() *PutLeadsUnprocessableEntity {
|
|
return &PutLeadsUnprocessableEntity{}
|
|
}
|
|
|
|
// PutLeadsUnprocessableEntity describes a response with status code 422, with default header values.
|
|
//
|
|
// Unprocessable Entity, likely a bad parameter
|
|
type PutLeadsUnprocessableEntity struct {
|
|
AccessControlAllowOrigin string
|
|
|
|
Payload *crm_models.Error
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
func (o *PutLeadsUnprocessableEntity) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsUnprocessableEntity %s", 422, payload)
|
|
}
|
|
|
|
func (o *PutLeadsUnprocessableEntity) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsUnprocessableEntity %s", 422, payload)
|
|
}
|
|
|
|
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 && !stderrors.Is(err, io.EOF) {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutLeadsInternalServerError creates a PutLeadsInternalServerError with default headers values
|
|
func NewPutLeadsInternalServerError() *PutLeadsInternalServerError {
|
|
return &PutLeadsInternalServerError{}
|
|
}
|
|
|
|
// PutLeadsInternalServerError describes a response with status code 500, with default header values.
|
|
//
|
|
// Server Internal Error
|
|
type PutLeadsInternalServerError struct {
|
|
AccessControlAllowOrigin string
|
|
|
|
Payload *crm_models.Error
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
func (o *PutLeadsInternalServerError) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsInternalServerError %s", 500, payload)
|
|
}
|
|
|
|
func (o *PutLeadsInternalServerError) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[PUT /leads][%d] putLeadsInternalServerError %s", 500, payload)
|
|
}
|
|
|
|
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 && !stderrors.Is(err, io.EOF) {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|