2021-01-08 17:40:28 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-01-19 16:58:40 +00:00
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
2021-01-08 17:40:28 +00:00
// 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 (
2021-02-09 16:56:57 +00:00
"context"
2021-01-08 17:40:28 +00:00
"fmt"
"io"
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
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
)
// DeleteContactReader is a Reader for the DeleteContact structure.
type DeleteContactReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * DeleteContactReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewDeleteContactOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewDeleteContactUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewDeleteContactForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewDeleteContactNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewDeleteContactInternalServerError ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
default :
2021-02-09 16:56:57 +00:00
return nil , runtime . NewAPIError ( "response status code does not match any response statuses defined for this endpoint in the swagger spec" , response , response . Code ( ) )
2021-01-08 17:40:28 +00:00
}
}
// NewDeleteContactOK creates a DeleteContactOK with default headers values
func NewDeleteContactOK ( ) * DeleteContactOK {
return & DeleteContactOK { }
}
2021-02-09 16:56:57 +00:00
/ * DeleteContactOK describes a response with status code 200 , with default header values .
2021-01-08 17:40:28 +00:00
An array of Message Objects with Delete Status
* /
type DeleteContactOK struct {
Payload * DeleteContactOKBody
}
func ( o * DeleteContactOK ) Error ( ) string {
return fmt . Sprintf ( "[DELETE /contacts][%d] deleteContactOK %+v" , 200 , o . Payload )
}
func ( o * DeleteContactOK ) GetPayload ( ) * DeleteContactOKBody {
return o . Payload
}
func ( o * DeleteContactOK ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( DeleteContactOKBody )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewDeleteContactUnauthorized creates a DeleteContactUnauthorized with default headers values
func NewDeleteContactUnauthorized ( ) * DeleteContactUnauthorized {
return & DeleteContactUnauthorized { }
}
2021-02-09 16:56:57 +00:00
/ * DeleteContactUnauthorized describes a response with status code 401 , with default header values .
2021-01-08 17:40:28 +00:00
Access unauthorized , invalid API - KEY was used
* /
type DeleteContactUnauthorized struct {
Payload * sf_gate_models . Error
}
func ( o * DeleteContactUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[DELETE /contacts][%d] deleteContactUnauthorized %+v" , 401 , o . Payload )
}
func ( o * DeleteContactUnauthorized ) GetPayload ( ) * sf_gate_models . Error {
return o . Payload
}
func ( o * DeleteContactUnauthorized ) 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
}
// NewDeleteContactForbidden creates a DeleteContactForbidden with default headers values
func NewDeleteContactForbidden ( ) * DeleteContactForbidden {
return & DeleteContactForbidden { }
}
2021-02-09 16:56:57 +00:00
/ * DeleteContactForbidden describes a response with status code 403 , with default header values .
2021-01-08 17:40:28 +00:00
Access forbidden , account lacks access
* /
type DeleteContactForbidden struct {
Payload * sf_gate_models . Error
}
func ( o * DeleteContactForbidden ) Error ( ) string {
return fmt . Sprintf ( "[DELETE /contacts][%d] deleteContactForbidden %+v" , 403 , o . Payload )
}
func ( o * DeleteContactForbidden ) GetPayload ( ) * sf_gate_models . Error {
return o . Payload
}
func ( o * DeleteContactForbidden ) 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
}
// NewDeleteContactNotFound creates a DeleteContactNotFound with default headers values
func NewDeleteContactNotFound ( ) * DeleteContactNotFound {
return & DeleteContactNotFound { }
}
2021-02-09 16:56:57 +00:00
/ * DeleteContactNotFound describes a response with status code 404 , with default header values .
2021-01-08 17:40:28 +00:00
Resource was not found
* /
type DeleteContactNotFound struct {
Payload * sf_gate_models . Error
}
func ( o * DeleteContactNotFound ) Error ( ) string {
return fmt . Sprintf ( "[DELETE /contacts][%d] deleteContactNotFound %+v" , 404 , o . Payload )
}
func ( o * DeleteContactNotFound ) GetPayload ( ) * sf_gate_models . Error {
return o . Payload
}
func ( o * DeleteContactNotFound ) 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
}
// NewDeleteContactInternalServerError creates a DeleteContactInternalServerError with default headers values
func NewDeleteContactInternalServerError ( ) * DeleteContactInternalServerError {
return & DeleteContactInternalServerError { }
}
2021-02-09 16:56:57 +00:00
/ * DeleteContactInternalServerError describes a response with status code 500 , with default header values .
2021-01-08 17:40:28 +00:00
Server Internal Error
* /
type DeleteContactInternalServerError struct {
Payload * sf_gate_models . Error
}
func ( o * DeleteContactInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[DELETE /contacts][%d] deleteContactInternalServerError %+v" , 500 , o . Payload )
}
func ( o * DeleteContactInternalServerError ) GetPayload ( ) * sf_gate_models . Error {
return o . Payload
}
func ( o * DeleteContactInternalServerError ) 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
}
/ * DeleteContactOKBody delete contact o k body
swagger : model DeleteContactOKBody
* /
type DeleteContactOKBody struct {
// data
Data [ ] * sf_gate_models . Message ` json:"data" `
// meta
Meta * sf_gate_models . ResponseMeta ` json:"meta,omitempty" `
}
// Validate validates this delete contact o k body
func ( o * DeleteContactOKBody ) Validate ( formats strfmt . Registry ) error {
var res [ ] error
if err := o . validateData ( formats ) ; err != nil {
res = append ( res , err )
}
if err := o . validateMeta ( formats ) ; err != nil {
res = append ( res , err )
}
if len ( res ) > 0 {
return errors . CompositeValidationError ( res ... )
}
return nil
}
func ( o * DeleteContactOKBody ) validateData ( formats strfmt . Registry ) error {
if swag . IsZero ( o . Data ) { // not required
return nil
}
for i := 0 ; i < len ( o . Data ) ; i ++ {
if swag . IsZero ( o . Data [ i ] ) { // not required
continue
}
if o . Data [ i ] != nil {
if err := o . Data [ i ] . Validate ( formats ) ; err != nil {
if ve , ok := err . ( * errors . Validation ) ; ok {
return ve . ValidateName ( "deleteContactOK" + "." + "data" + "." + strconv . Itoa ( i ) )
}
return err
}
}
}
return nil
}
func ( o * DeleteContactOKBody ) validateMeta ( formats strfmt . Registry ) error {
if swag . IsZero ( o . Meta ) { // not required
return nil
}
if o . Meta != nil {
if err := o . Meta . Validate ( formats ) ; err != nil {
if ve , ok := err . ( * errors . Validation ) ; ok {
return ve . ValidateName ( "deleteContactOK" + "." + "meta" )
}
return err
}
}
return nil
}
2021-02-09 16:56:57 +00:00
// ContextValidate validate this delete contact o k body based on the context it is used
func ( o * DeleteContactOKBody ) ContextValidate ( ctx context . Context , formats strfmt . Registry ) error {
var res [ ] error
if err := o . contextValidateData ( ctx , formats ) ; err != nil {
res = append ( res , err )
}
if err := o . contextValidateMeta ( ctx , formats ) ; err != nil {
res = append ( res , err )
}
if len ( res ) > 0 {
return errors . CompositeValidationError ( res ... )
}
return nil
}
func ( o * DeleteContactOKBody ) contextValidateData ( ctx context . Context , formats strfmt . Registry ) error {
for i := 0 ; i < len ( o . Data ) ; i ++ {
if o . Data [ i ] != nil {
if err := o . Data [ i ] . ContextValidate ( ctx , formats ) ; err != nil {
if ve , ok := err . ( * errors . Validation ) ; ok {
return ve . ValidateName ( "deleteContactOK" + "." + "data" + "." + strconv . Itoa ( i ) )
}
return err
}
}
}
return nil
}
func ( o * DeleteContactOKBody ) contextValidateMeta ( ctx context . Context , formats strfmt . Registry ) error {
if o . Meta != nil {
if err := o . Meta . ContextValidate ( ctx , formats ) ; err != nil {
if ve , ok := err . ( * errors . Validation ) ; ok {
return ve . ValidateName ( "deleteContactOK" + "." + "meta" )
}
return err
}
}
return nil
}
2021-01-08 17:40:28 +00:00
// MarshalBinary interface implementation
func ( o * DeleteContactOKBody ) MarshalBinary ( ) ( [ ] byte , error ) {
if o == nil {
return nil , nil
}
return swag . WriteJSON ( o )
}
// UnmarshalBinary interface implementation
func ( o * DeleteContactOKBody ) UnmarshalBinary ( b [ ] byte ) error {
var res DeleteContactOKBody
if err := swag . ReadJSON ( b , & res ) ; err != nil {
return err
}
* o = res
return nil
}