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 tenants
// 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"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
)
// TenantsReader is a Reader for the Tenants structure.
type TenantsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * TenantsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
2023-03-28 17:47:34 +00:00
case 201 :
result := NewTenantsCreated ( )
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 := NewTenantsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewTenantsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewTenantsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewTenantsUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewTenantsInternalServerError ( )
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 ( ) )
}
}
2023-03-28 17:47:34 +00:00
// NewTenantsCreated creates a TenantsCreated with default headers values
func NewTenantsCreated ( ) * TenantsCreated {
return & TenantsCreated { }
2021-08-05 19:37:53 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
2023-03-28 17:47:34 +00:00
TenantsCreated describes a response with status code 201 , with default header values .
2021-08-05 19:37:53 +00:00
2023-03-28 17:47:34 +00:00
Response from Salesforce
2021-08-05 19:37:53 +00:00
* /
2023-03-28 17:47:34 +00:00
type TenantsCreated 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 tenants created response has a 2xx status code
func ( o * TenantsCreated ) 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 tenants created response has a 3xx status code
func ( o * TenantsCreated ) 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 tenants created response has a 4xx status code
func ( o * TenantsCreated ) 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 tenants created response has a 5xx status code
func ( o * TenantsCreated ) 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 tenants created response a status code equal to that given
func ( o * TenantsCreated ) 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 tenants created response
func ( o * TenantsCreated ) Code ( ) int {
return 201
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func ( o * TenantsCreated ) Error ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsCreated %+v" , 201 , o . 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 * TenantsCreated ) String ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsCreated %+v" , 201 , o . Payload )
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func ( o * TenantsCreated ) 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 * TenantsCreated ) 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 && err != io . EOF {
return err
}
return nil
}
// NewTenantsUnauthorized creates a TenantsUnauthorized with default headers values
func NewTenantsUnauthorized ( ) * TenantsUnauthorized {
return & TenantsUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
TenantsUnauthorized describes a response with status code 401 , with default header values .
2021-08-05 19:37:53 +00:00
Access unauthorized , invalid API - KEY was used
* /
type TenantsUnauthorized struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this tenants unauthorized response has a 2xx status code
func ( o * TenantsUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this tenants unauthorized response has a 3xx status code
func ( o * TenantsUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this tenants unauthorized response has a 4xx status code
func ( o * TenantsUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this tenants unauthorized response has a 5xx status code
func ( o * TenantsUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this tenants unauthorized response a status code equal to that given
func ( o * TenantsUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the tenants unauthorized response
func ( o * TenantsUnauthorized ) Code ( ) int {
return 401
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * TenantsUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsUnauthorized %+v" , 401 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsUnauthorized ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * TenantsUnauthorized ) 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 && err != io . EOF {
return err
}
return nil
}
// NewTenantsForbidden creates a TenantsForbidden with default headers values
func NewTenantsForbidden ( ) * TenantsForbidden {
return & TenantsForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
TenantsForbidden describes a response with status code 403 , with default header values .
2021-08-05 19:37:53 +00:00
Access forbidden , account lacks access
* /
type TenantsForbidden struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this tenants forbidden response has a 2xx status code
func ( o * TenantsForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this tenants forbidden response has a 3xx status code
func ( o * TenantsForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this tenants forbidden response has a 4xx status code
func ( o * TenantsForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this tenants forbidden response has a 5xx status code
func ( o * TenantsForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this tenants forbidden response a status code equal to that given
func ( o * TenantsForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the tenants forbidden response
func ( o * TenantsForbidden ) Code ( ) int {
return 403
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * TenantsForbidden ) String ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsForbidden %+v" , 403 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsForbidden ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * TenantsForbidden ) 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 && err != io . EOF {
return err
}
return nil
}
// NewTenantsNotFound creates a TenantsNotFound with default headers values
func NewTenantsNotFound ( ) * TenantsNotFound {
return & TenantsNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
TenantsNotFound describes a response with status code 404 , with default header values .
2021-08-05 19:37:53 +00:00
Resource was not found
* /
type TenantsNotFound struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this tenants not found response has a 2xx status code
func ( o * TenantsNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this tenants not found response has a 3xx status code
func ( o * TenantsNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this tenants not found response has a 4xx status code
func ( o * TenantsNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this tenants not found response has a 5xx status code
func ( o * TenantsNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this tenants not found response a status code equal to that given
func ( o * TenantsNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the tenants not found response
func ( o * TenantsNotFound ) Code ( ) int {
return 404
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * TenantsNotFound ) String ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsNotFound %+v" , 404 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsNotFound ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * TenantsNotFound ) 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 && err != io . EOF {
return err
}
return nil
}
// NewTenantsUnprocessableEntity creates a TenantsUnprocessableEntity with default headers values
func NewTenantsUnprocessableEntity ( ) * TenantsUnprocessableEntity {
return & TenantsUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
TenantsUnprocessableEntity describes a response with status code 422 , with default header values .
2021-08-05 19:37:53 +00:00
Unprocessable Entity , likely a bad parameter
* /
type TenantsUnprocessableEntity struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this tenants unprocessable entity response has a 2xx status code
func ( o * TenantsUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this tenants unprocessable entity response has a 3xx status code
func ( o * TenantsUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this tenants unprocessable entity response has a 4xx status code
func ( o * TenantsUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this tenants unprocessable entity response has a 5xx status code
func ( o * TenantsUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this tenants unprocessable entity response a status code equal to that given
func ( o * TenantsUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the tenants unprocessable entity response
func ( o * TenantsUnprocessableEntity ) Code ( ) int {
return 422
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * TenantsUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsUnprocessableEntity ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * TenantsUnprocessableEntity ) 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 && err != io . EOF {
return err
}
return nil
}
// NewTenantsInternalServerError creates a TenantsInternalServerError with default headers values
func NewTenantsInternalServerError ( ) * TenantsInternalServerError {
return & TenantsInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
TenantsInternalServerError describes a response with status code 500 , with default header values .
2021-08-05 19:37:53 +00:00
Server Internal Error
* /
type TenantsInternalServerError struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this tenants internal server error response has a 2xx status code
func ( o * TenantsInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this tenants internal server error response has a 3xx status code
func ( o * TenantsInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this tenants internal server error response has a 4xx status code
func ( o * TenantsInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this tenants internal server error response has a 5xx status code
func ( o * TenantsInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this tenants internal server error response a status code equal to that given
func ( o * TenantsInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the tenants internal server error response
func ( o * TenantsInternalServerError ) Code ( ) int {
return 500
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * TenantsInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[POST /tenants][%d] tenantsInternalServerError %+v" , 500 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * TenantsInternalServerError ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * TenantsInternalServerError ) 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 && err != io . EOF {
return err
}
return nil
}