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"
)
// PutTenantsReader is a Reader for the PutTenants structure.
type PutTenantsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * PutTenantsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewPutTenantsOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewPutTenantsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewPutTenantsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewPutTenantsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewPutTenantsUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewPutTenantsInternalServerError ( )
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 ( ) )
}
}
// NewPutTenantsOK creates a PutTenantsOK with default headers values
func NewPutTenantsOK ( ) * PutTenantsOK {
return & PutTenantsOK { }
}
2023-03-22 20:49:01 +00:00
/ *
PutTenantsOK describes a response with status code 200 , with default header values .
2021-08-05 19:37:53 +00:00
2023-03-28 17:47:34 +00:00
Response with Tenant objects
2021-08-05 19:37:53 +00:00
* /
type PutTenantsOK struct {
Payload * sfgate_models . TenantResponse
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put tenants o k response has a 2xx status code
func ( o * PutTenantsOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this put tenants o k response has a 3xx status code
func ( o * PutTenantsOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put tenants o k response has a 4xx status code
func ( o * PutTenantsOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this put tenants o k response has a 5xx status code
func ( o * PutTenantsOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put tenants o k response a status code equal to that given
func ( o * PutTenantsOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the put tenants o k response
func ( o * PutTenantsOK ) Code ( ) int {
return 200
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsOK ) Error ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutTenantsOK ) String ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsOK %+v" , 200 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsOK ) GetPayload ( ) * sfgate_models . TenantResponse {
return o . Payload
}
func ( o * PutTenantsOK ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( sfgate_models . TenantResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPutTenantsUnauthorized creates a PutTenantsUnauthorized with default headers values
func NewPutTenantsUnauthorized ( ) * PutTenantsUnauthorized {
return & PutTenantsUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
PutTenantsUnauthorized 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 PutTenantsUnauthorized struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put tenants unauthorized response has a 2xx status code
func ( o * PutTenantsUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put tenants unauthorized response has a 3xx status code
func ( o * PutTenantsUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put tenants unauthorized response has a 4xx status code
func ( o * PutTenantsUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put tenants unauthorized response has a 5xx status code
func ( o * PutTenantsUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put tenants unauthorized response a status code equal to that given
func ( o * PutTenantsUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the put tenants unauthorized response
func ( o * PutTenantsUnauthorized ) Code ( ) int {
return 401
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutTenantsUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsUnauthorized %+v" , 401 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsUnauthorized ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * PutTenantsUnauthorized ) 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
}
// NewPutTenantsForbidden creates a PutTenantsForbidden with default headers values
func NewPutTenantsForbidden ( ) * PutTenantsForbidden {
return & PutTenantsForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
PutTenantsForbidden 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 PutTenantsForbidden struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put tenants forbidden response has a 2xx status code
func ( o * PutTenantsForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put tenants forbidden response has a 3xx status code
func ( o * PutTenantsForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put tenants forbidden response has a 4xx status code
func ( o * PutTenantsForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put tenants forbidden response has a 5xx status code
func ( o * PutTenantsForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put tenants forbidden response a status code equal to that given
func ( o * PutTenantsForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the put tenants forbidden response
func ( o * PutTenantsForbidden ) Code ( ) int {
return 403
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutTenantsForbidden ) String ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsForbidden %+v" , 403 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsForbidden ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * PutTenantsForbidden ) 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
}
// NewPutTenantsNotFound creates a PutTenantsNotFound with default headers values
func NewPutTenantsNotFound ( ) * PutTenantsNotFound {
return & PutTenantsNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
PutTenantsNotFound describes a response with status code 404 , with default header values .
2021-08-05 19:37:53 +00:00
Resource was not found
* /
type PutTenantsNotFound struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put tenants not found response has a 2xx status code
func ( o * PutTenantsNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put tenants not found response has a 3xx status code
func ( o * PutTenantsNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put tenants not found response has a 4xx status code
func ( o * PutTenantsNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put tenants not found response has a 5xx status code
func ( o * PutTenantsNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put tenants not found response a status code equal to that given
func ( o * PutTenantsNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the put tenants not found response
func ( o * PutTenantsNotFound ) Code ( ) int {
return 404
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutTenantsNotFound ) String ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsNotFound %+v" , 404 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsNotFound ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * PutTenantsNotFound ) 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
}
// NewPutTenantsUnprocessableEntity creates a PutTenantsUnprocessableEntity with default headers values
func NewPutTenantsUnprocessableEntity ( ) * PutTenantsUnprocessableEntity {
return & PutTenantsUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
PutTenantsUnprocessableEntity 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 PutTenantsUnprocessableEntity struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put tenants unprocessable entity response has a 2xx status code
func ( o * PutTenantsUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put tenants unprocessable entity response has a 3xx status code
func ( o * PutTenantsUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put tenants unprocessable entity response has a 4xx status code
func ( o * PutTenantsUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this put tenants unprocessable entity response has a 5xx status code
func ( o * PutTenantsUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this put tenants unprocessable entity response a status code equal to that given
func ( o * PutTenantsUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the put tenants unprocessable entity response
func ( o * PutTenantsUnprocessableEntity ) Code ( ) int {
return 422
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutTenantsUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsUnprocessableEntity ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * PutTenantsUnprocessableEntity ) 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
}
// NewPutTenantsInternalServerError creates a PutTenantsInternalServerError with default headers values
func NewPutTenantsInternalServerError ( ) * PutTenantsInternalServerError {
return & PutTenantsInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
PutTenantsInternalServerError describes a response with status code 500 , with default header values .
2021-08-05 19:37:53 +00:00
Server Internal Error
* /
type PutTenantsInternalServerError struct {
Payload * sfgate_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put tenants internal server error response has a 2xx status code
func ( o * PutTenantsInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this put tenants internal server error response has a 3xx status code
func ( o * PutTenantsInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this put tenants internal server error response has a 4xx status code
func ( o * PutTenantsInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this put tenants internal server error response has a 5xx status code
func ( o * PutTenantsInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this put tenants internal server error response a status code equal to that given
func ( o * PutTenantsInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the put tenants internal server error response
func ( o * PutTenantsInternalServerError ) Code ( ) int {
return 500
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * PutTenantsInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[PUT /tenants][%d] putTenantsInternalServerError %+v" , 500 , o . Payload )
}
2021-08-05 19:37:53 +00:00
func ( o * PutTenantsInternalServerError ) GetPayload ( ) * sfgate_models . Error {
return o . Payload
}
func ( o * PutTenantsInternalServerError ) 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
}