lib/api/members/members_client/tenants/post_tenants_responses.go

485 lines
15 KiB
Go
Raw Permalink Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-04-07 18:00:15 +00:00
package tenants
2021-07-31 03:05:02 +00:00
import (
"encoding/json"
stderrors "errors"
2021-07-31 03:05:02 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/members/members_models"
2021-07-31 03:05:02 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// PostTenantsReader is a Reader for the PostTenants structure.
type PostTenantsReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PostTenantsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2021-07-31 03:05:02 +00:00
switch response.Code() {
case 200:
result := NewPostTenantsOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPostTenantsUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPostTenantsForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPostTenantsNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewPostTenantsUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPostTenantsInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[POST /tenants] postTenants", response, response.Code())
2021-07-31 03:05:02 +00:00
}
}
// NewPostTenantsOK creates a PostTenantsOK with default headers values
func NewPostTenantsOK() *PostTenantsOK {
return &PostTenantsOK{}
}
// PostTenantsOK describes a response with status code 200, with default header values.
//
// Response with Tenant objects
2021-07-31 03:05:02 +00:00
type PostTenantsOK struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.TenantResponse
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post tenants o k response has a 2xx status code
func (o *PostTenantsOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this post tenants o k response has a 3xx status code
func (o *PostTenantsOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this post tenants o k response has a 4xx status code
func (o *PostTenantsOK) IsClientError() bool {
return false
}
// IsServerError returns true when this post tenants o k response has a 5xx status code
func (o *PostTenantsOK) IsServerError() bool {
return false
}
// IsCode returns true when this post tenants o k response a status code equal to that given
func (o *PostTenantsOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the post tenants o k response
func (o *PostTenantsOK) Code() int {
return 200
}
2021-07-31 03:05:02 +00:00
func (o *PostTenantsOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsOK %s", 200, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostTenantsOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsOK %s", 200, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *PostTenantsOK) GetPayload() *members_models.TenantResponse {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *PostTenantsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.TenantResponse)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewPostTenantsUnauthorized creates a PostTenantsUnauthorized with default headers values
func NewPostTenantsUnauthorized() *PostTenantsUnauthorized {
return &PostTenantsUnauthorized{}
}
// PostTenantsUnauthorized describes a response with status code 401, with default header values.
//
// Access Unauthorized, invalid API-KEY was used
2021-07-31 03:05:02 +00:00
type PostTenantsUnauthorized struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post tenants unauthorized response has a 2xx status code
func (o *PostTenantsUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post tenants unauthorized response has a 3xx status code
func (o *PostTenantsUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this post tenants unauthorized response has a 4xx status code
func (o *PostTenantsUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this post tenants unauthorized response has a 5xx status code
func (o *PostTenantsUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this post tenants unauthorized response a status code equal to that given
func (o *PostTenantsUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the post tenants unauthorized response
func (o *PostTenantsUnauthorized) Code() int {
return 401
}
2021-07-31 03:05:02 +00:00
func (o *PostTenantsUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsUnauthorized %s", 401, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostTenantsUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *PostTenantsUnauthorized) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *PostTenantsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewPostTenantsForbidden creates a PostTenantsForbidden with default headers values
func NewPostTenantsForbidden() *PostTenantsForbidden {
return &PostTenantsForbidden{}
}
// PostTenantsForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
2021-07-31 03:05:02 +00:00
type PostTenantsForbidden struct {
AccessControlAllowOrigin string
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post tenants forbidden response has a 2xx status code
func (o *PostTenantsForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post tenants forbidden response has a 3xx status code
func (o *PostTenantsForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this post tenants forbidden response has a 4xx status code
func (o *PostTenantsForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this post tenants forbidden response has a 5xx status code
func (o *PostTenantsForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this post tenants forbidden response a status code equal to that given
func (o *PostTenantsForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the post tenants forbidden response
func (o *PostTenantsForbidden) Code() int {
return 403
}
2021-07-31 03:05:02 +00:00
func (o *PostTenantsForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsForbidden %s", 403, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostTenantsForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *PostTenantsForbidden) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *PostTenantsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewPostTenantsNotFound creates a PostTenantsNotFound with default headers values
func NewPostTenantsNotFound() *PostTenantsNotFound {
return &PostTenantsNotFound{}
}
// PostTenantsNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2021-07-31 03:05:02 +00:00
type PostTenantsNotFound struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post tenants not found response has a 2xx status code
func (o *PostTenantsNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post tenants not found response has a 3xx status code
func (o *PostTenantsNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this post tenants not found response has a 4xx status code
func (o *PostTenantsNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this post tenants not found response has a 5xx status code
func (o *PostTenantsNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this post tenants not found response a status code equal to that given
func (o *PostTenantsNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the post tenants not found response
func (o *PostTenantsNotFound) Code() int {
return 404
}
2021-07-31 03:05:02 +00:00
func (o *PostTenantsNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsNotFound %s", 404, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostTenantsNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *PostTenantsNotFound) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *PostTenantsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewPostTenantsUnprocessableEntity creates a PostTenantsUnprocessableEntity with default headers values
func NewPostTenantsUnprocessableEntity() *PostTenantsUnprocessableEntity {
return &PostTenantsUnprocessableEntity{}
}
// PostTenantsUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
2021-07-31 03:05:02 +00:00
type PostTenantsUnprocessableEntity struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post tenants unprocessable entity response has a 2xx status code
func (o *PostTenantsUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post tenants unprocessable entity response has a 3xx status code
func (o *PostTenantsUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this post tenants unprocessable entity response has a 4xx status code
func (o *PostTenantsUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this post tenants unprocessable entity response has a 5xx status code
func (o *PostTenantsUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this post tenants unprocessable entity response a status code equal to that given
func (o *PostTenantsUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the post tenants unprocessable entity response
func (o *PostTenantsUnprocessableEntity) Code() int {
return 422
}
2021-07-31 03:05:02 +00:00
func (o *PostTenantsUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsUnprocessableEntity %s", 422, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostTenantsUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsUnprocessableEntity %s", 422, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *PostTenantsUnprocessableEntity) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *PostTenantsUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewPostTenantsInternalServerError creates a PostTenantsInternalServerError with default headers values
func NewPostTenantsInternalServerError() *PostTenantsInternalServerError {
return &PostTenantsInternalServerError{}
}
// PostTenantsInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2021-07-31 03:05:02 +00:00
type PostTenantsInternalServerError struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this post tenants internal server error response has a 2xx status code
func (o *PostTenantsInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post tenants internal server error response has a 3xx status code
func (o *PostTenantsInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this post tenants internal server error response has a 4xx status code
func (o *PostTenantsInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this post tenants internal server error response has a 5xx status code
func (o *PostTenantsInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this post tenants internal server error response a status code equal to that given
func (o *PostTenantsInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the post tenants internal server error response
func (o *PostTenantsInternalServerError) Code() int {
return 500
}
2021-07-31 03:05:02 +00:00
func (o *PostTenantsInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsInternalServerError %s", 500, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostTenantsInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /tenants][%d] postTenantsInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *PostTenantsInternalServerError) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *PostTenantsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}