lib/api/sf-gate/sf_gate_client/contacts/put_contacts_responses.go

230 lines
6.2 KiB
Go
Raw Permalink Normal View History

2021-01-08 17:40:28 +00:00
// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
// 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-01-10 17:03:26 +00:00
"code.tnxs.net/taxnexus/lib/api/sf-gate/sf_gate_models"
2021-01-08 17:40:28 +00:00
)
// PutContactsReader is a Reader for the PutContacts structure.
type PutContactsReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PutContactsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewPutContactsOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPutContactsUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPutContactsForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPutContactsNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPutContactsInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("unknown error", response, response.Code())
}
}
// NewPutContactsOK creates a PutContactsOK with default headers values
func NewPutContactsOK() *PutContactsOK {
return &PutContactsOK{}
}
/*PutContactsOK handles this case with default header values.
An array of Contact objects
*/
type PutContactsOK struct {
Payload *sf_gate_models.ContactResponse
}
func (o *PutContactsOK) Error() string {
return fmt.Sprintf("[PUT /contacts][%d] putContactsOK %+v", 200, o.Payload)
}
func (o *PutContactsOK) GetPayload() *sf_gate_models.ContactResponse {
return o.Payload
}
func (o *PutContactsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sf_gate_models.ContactResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPutContactsUnauthorized creates a PutContactsUnauthorized with default headers values
func NewPutContactsUnauthorized() *PutContactsUnauthorized {
return &PutContactsUnauthorized{}
}
/*PutContactsUnauthorized handles this case with default header values.
Access unauthorized, invalid API-KEY was used
*/
type PutContactsUnauthorized struct {
Payload *sf_gate_models.Error
}
func (o *PutContactsUnauthorized) Error() string {
return fmt.Sprintf("[PUT /contacts][%d] putContactsUnauthorized %+v", 401, o.Payload)
}
func (o *PutContactsUnauthorized) GetPayload() *sf_gate_models.Error {
return o.Payload
}
func (o *PutContactsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sf_gate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPutContactsForbidden creates a PutContactsForbidden with default headers values
func NewPutContactsForbidden() *PutContactsForbidden {
return &PutContactsForbidden{}
}
/*PutContactsForbidden handles this case with default header values.
Access forbidden, account lacks access
*/
type PutContactsForbidden struct {
Payload *sf_gate_models.Error
}
func (o *PutContactsForbidden) Error() string {
return fmt.Sprintf("[PUT /contacts][%d] putContactsForbidden %+v", 403, o.Payload)
}
func (o *PutContactsForbidden) GetPayload() *sf_gate_models.Error {
return o.Payload
}
func (o *PutContactsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sf_gate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPutContactsNotFound creates a PutContactsNotFound with default headers values
func NewPutContactsNotFound() *PutContactsNotFound {
return &PutContactsNotFound{}
}
/*PutContactsNotFound handles this case with default header values.
Resource was not found
*/
type PutContactsNotFound struct {
Payload *sf_gate_models.Error
}
func (o *PutContactsNotFound) Error() string {
return fmt.Sprintf("[PUT /contacts][%d] putContactsNotFound %+v", 404, o.Payload)
}
func (o *PutContactsNotFound) GetPayload() *sf_gate_models.Error {
return o.Payload
}
func (o *PutContactsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sf_gate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPutContactsInternalServerError creates a PutContactsInternalServerError with default headers values
func NewPutContactsInternalServerError() *PutContactsInternalServerError {
return &PutContactsInternalServerError{}
}
/*PutContactsInternalServerError handles this case with default header values.
Server Internal Error
*/
type PutContactsInternalServerError struct {
Payload *sf_gate_models.Error
}
func (o *PutContactsInternalServerError) Error() string {
return fmt.Sprintf("[PUT /contacts][%d] putContactsInternalServerError %+v", 500, o.Payload)
}
func (o *PutContactsInternalServerError) GetPayload() *sf_gate_models.Error {
return o.Payload
}
func (o *PutContactsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sf_gate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}