lib/api/sfgate/sfgate_client/contacts/post_contacts_responses.go

402 lines
12 KiB
Go
Raw Permalink Normal View History

2021-08-05 19:37:53 +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 contacts
import (
"encoding/json"
stderrors "errors"
2021-08-05 19:37:53 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
2021-08-05 19:37:53 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// 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) (any, error) {
2021-08-05 19:37:53 +00:00
switch response.Code() {
2023-03-28 17:47:34 +00:00
case 201:
result := NewPostContactsCreated()
2021-08-05 19:37:53 +00:00
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 500:
result := NewPostContactsInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[POST /contacts] postContacts", response, response.Code())
2021-08-05 19:37:53 +00:00
}
}
2023-03-28 17:47:34 +00:00
// NewPostContactsCreated creates a PostContactsCreated with default headers values
func NewPostContactsCreated() *PostContactsCreated {
return &PostContactsCreated{}
2021-08-05 19:37:53 +00:00
}
// PostContactsCreated describes a response with status code 201, with default header values.
//
// Response from Salesforce
2023-03-28 17:47:34 +00:00
type PostContactsCreated struct {
Payload *sfgate_models.SalesforcePostResponse
2021-08-05 19:37:53 +00:00
}
2023-03-28 17:47:34 +00:00
// IsSuccess returns true when this post contacts created response has a 2xx status code
func (o *PostContactsCreated) IsSuccess() bool {
2023-03-22 20:49:01 +00:00
return true
}
2023-03-28 17:47:34 +00:00
// IsRedirect returns true when this post contacts created response has a 3xx status code
func (o *PostContactsCreated) IsRedirect() bool {
2023-03-22 20:49:01 +00:00
return false
}
2023-03-28 17:47:34 +00:00
// IsClientError returns true when this post contacts created response has a 4xx status code
func (o *PostContactsCreated) IsClientError() bool {
2023-03-22 20:49:01 +00:00
return false
}
2023-03-28 17:47:34 +00:00
// IsServerError returns true when this post contacts created response has a 5xx status code
func (o *PostContactsCreated) IsServerError() bool {
2023-03-22 20:49:01 +00:00
return false
}
2023-03-28 17:47:34 +00:00
// IsCode returns true when this post contacts created response a status code equal to that given
func (o *PostContactsCreated) IsCode(code int) bool {
return code == 201
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
// Code gets the status code for the post contacts created response
func (o *PostContactsCreated) Code() int {
return 201
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func (o *PostContactsCreated) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsCreated %s", 201, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
2023-03-28 17:47:34 +00:00
func (o *PostContactsCreated) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsCreated %s", 201, payload)
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func (o *PostContactsCreated) GetPayload() *sfgate_models.SalesforcePostResponse {
2021-08-05 19:37:53 +00:00
return o.Payload
}
2023-03-28 17:47:34 +00:00
func (o *PostContactsCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-08-05 19:37:53 +00:00
2023-03-28 17:47:34 +00:00
o.Payload = new(sfgate_models.SalesforcePostResponse)
2021-08-05 19:37:53 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
return err
}
return nil
}
// NewPostContactsUnauthorized creates a PostContactsUnauthorized with default headers values
func NewPostContactsUnauthorized() *PostContactsUnauthorized {
return &PostContactsUnauthorized{}
}
// PostContactsUnauthorized describes a response with status code 401, with default header values.
//
// Access unauthorized, invalid API-KEY was used
2021-08-05 19:37:53 +00:00
type PostContactsUnauthorized struct {
Payload *sfgate_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-08-05 19:37:53 +00:00
func (o *PostContactsUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsUnauthorized %s", 401, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContactsUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-05 19:37:53 +00:00
func (o *PostContactsUnauthorized) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostContactsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
return err
}
return nil
}
// NewPostContactsForbidden creates a PostContactsForbidden with default headers values
func NewPostContactsForbidden() *PostContactsForbidden {
return &PostContactsForbidden{}
}
// PostContactsForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
2021-08-05 19:37:53 +00:00
type PostContactsForbidden struct {
Payload *sfgate_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-08-05 19:37:53 +00:00
func (o *PostContactsForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsForbidden %s", 403, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContactsForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-05 19:37:53 +00:00
func (o *PostContactsForbidden) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostContactsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
return err
}
return nil
}
// NewPostContactsNotFound creates a PostContactsNotFound with default headers values
func NewPostContactsNotFound() *PostContactsNotFound {
return &PostContactsNotFound{}
}
// PostContactsNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2021-08-05 19:37:53 +00:00
type PostContactsNotFound struct {
Payload *sfgate_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-08-05 19:37:53 +00:00
func (o *PostContactsNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsNotFound %s", 404, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContactsNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-05 19:37:53 +00:00
func (o *PostContactsNotFound) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostContactsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
return err
}
return nil
}
// NewPostContactsInternalServerError creates a PostContactsInternalServerError with default headers values
func NewPostContactsInternalServerError() *PostContactsInternalServerError {
return &PostContactsInternalServerError{}
}
// PostContactsInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2021-08-05 19:37:53 +00:00
type PostContactsInternalServerError struct {
Payload *sfgate_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-08-05 19:37:53 +00:00
func (o *PostContactsInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsInternalServerError %s", 500, payload)
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostContactsInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /contacts][%d] postContactsInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-05 19:37:53 +00:00
func (o *PostContactsInternalServerError) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostContactsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-08-05 19:37:53 +00:00
return err
}
return nil
}