lib/api/members/members_client/tickets/put_tickets_responses.go

485 lines
15 KiB
Go
Raw Normal View History

2023-05-13 16:46:48 +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 tickets
import (
"encoding/json"
stderrors "errors"
2023-05-13 16:46:48 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/members/members_models"
2023-05-13 16:46:48 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// PutTicketsReader is a Reader for the PutTickets structure.
type PutTicketsReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PutTicketsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2023-05-13 16:46:48 +00:00
switch response.Code() {
case 200:
result := NewPutTicketsOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPutTicketsUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPutTicketsForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPutTicketsNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewPutTicketsUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPutTicketsInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[PUT /tickets] putTickets", response, response.Code())
2023-05-13 16:46:48 +00:00
}
}
// NewPutTicketsOK creates a PutTicketsOK with default headers values
func NewPutTicketsOK() *PutTicketsOK {
return &PutTicketsOK{}
}
// PutTicketsOK describes a response with status code 200, with default header values.
//
// Ticket Response Object
2023-05-13 16:46:48 +00:00
type PutTicketsOK struct {
Payload *members_models.TicketResponse
}
// IsSuccess returns true when this put tickets o k response has a 2xx status code
func (o *PutTicketsOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this put tickets o k response has a 3xx status code
func (o *PutTicketsOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this put tickets o k response has a 4xx status code
func (o *PutTicketsOK) IsClientError() bool {
return false
}
// IsServerError returns true when this put tickets o k response has a 5xx status code
func (o *PutTicketsOK) IsServerError() bool {
return false
}
// IsCode returns true when this put tickets o k response a status code equal to that given
func (o *PutTicketsOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the put tickets o k response
func (o *PutTicketsOK) Code() int {
return 200
}
func (o *PutTicketsOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsOK %s", 200, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsOK %s", 200, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsOK) GetPayload() *members_models.TicketResponse {
return o.Payload
}
func (o *PutTicketsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(members_models.TicketResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2023-05-13 16:46:48 +00:00
return err
}
return nil
}
// NewPutTicketsUnauthorized creates a PutTicketsUnauthorized with default headers values
func NewPutTicketsUnauthorized() *PutTicketsUnauthorized {
return &PutTicketsUnauthorized{}
}
// PutTicketsUnauthorized describes a response with status code 401, with default header values.
//
// Access Unauthorized, invalid API-KEY was used
2023-05-13 16:46:48 +00:00
type PutTicketsUnauthorized struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put tickets unauthorized response has a 2xx status code
func (o *PutTicketsUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put tickets unauthorized response has a 3xx status code
func (o *PutTicketsUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this put tickets unauthorized response has a 4xx status code
func (o *PutTicketsUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this put tickets unauthorized response has a 5xx status code
func (o *PutTicketsUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this put tickets unauthorized response a status code equal to that given
func (o *PutTicketsUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the put tickets unauthorized response
func (o *PutTicketsUnauthorized) Code() int {
return 401
}
func (o *PutTicketsUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsUnauthorized %s", 401, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsUnauthorized %s", 401, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsUnauthorized) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutTicketsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(members_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2023-05-13 16:46:48 +00:00
return err
}
return nil
}
// NewPutTicketsForbidden creates a PutTicketsForbidden with default headers values
func NewPutTicketsForbidden() *PutTicketsForbidden {
return &PutTicketsForbidden{}
}
// PutTicketsForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
2023-05-13 16:46:48 +00:00
type PutTicketsForbidden struct {
AccessControlAllowOrigin string
Payload *members_models.Error
}
// IsSuccess returns true when this put tickets forbidden response has a 2xx status code
func (o *PutTicketsForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put tickets forbidden response has a 3xx status code
func (o *PutTicketsForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this put tickets forbidden response has a 4xx status code
func (o *PutTicketsForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this put tickets forbidden response has a 5xx status code
func (o *PutTicketsForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this put tickets forbidden response a status code equal to that given
func (o *PutTicketsForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the put tickets forbidden response
func (o *PutTicketsForbidden) Code() int {
return 403
}
func (o *PutTicketsForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsForbidden %s", 403, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsForbidden %s", 403, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsForbidden) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutTicketsForbidden) 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
}
o.Payload = new(members_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2023-05-13 16:46:48 +00:00
return err
}
return nil
}
// NewPutTicketsNotFound creates a PutTicketsNotFound with default headers values
func NewPutTicketsNotFound() *PutTicketsNotFound {
return &PutTicketsNotFound{}
}
// PutTicketsNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2023-05-13 16:46:48 +00:00
type PutTicketsNotFound struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put tickets not found response has a 2xx status code
func (o *PutTicketsNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put tickets not found response has a 3xx status code
func (o *PutTicketsNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this put tickets not found response has a 4xx status code
func (o *PutTicketsNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this put tickets not found response has a 5xx status code
func (o *PutTicketsNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this put tickets not found response a status code equal to that given
func (o *PutTicketsNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the put tickets not found response
func (o *PutTicketsNotFound) Code() int {
return 404
}
func (o *PutTicketsNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsNotFound %s", 404, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsNotFound %s", 404, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsNotFound) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutTicketsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(members_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2023-05-13 16:46:48 +00:00
return err
}
return nil
}
// NewPutTicketsUnprocessableEntity creates a PutTicketsUnprocessableEntity with default headers values
func NewPutTicketsUnprocessableEntity() *PutTicketsUnprocessableEntity {
return &PutTicketsUnprocessableEntity{}
}
// PutTicketsUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
2023-05-13 16:46:48 +00:00
type PutTicketsUnprocessableEntity struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put tickets unprocessable entity response has a 2xx status code
func (o *PutTicketsUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put tickets unprocessable entity response has a 3xx status code
func (o *PutTicketsUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this put tickets unprocessable entity response has a 4xx status code
func (o *PutTicketsUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this put tickets unprocessable entity response has a 5xx status code
func (o *PutTicketsUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this put tickets unprocessable entity response a status code equal to that given
func (o *PutTicketsUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the put tickets unprocessable entity response
func (o *PutTicketsUnprocessableEntity) Code() int {
return 422
}
func (o *PutTicketsUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsUnprocessableEntity %s", 422, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsUnprocessableEntity %s", 422, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsUnprocessableEntity) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutTicketsUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(members_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2023-05-13 16:46:48 +00:00
return err
}
return nil
}
// NewPutTicketsInternalServerError creates a PutTicketsInternalServerError with default headers values
func NewPutTicketsInternalServerError() *PutTicketsInternalServerError {
return &PutTicketsInternalServerError{}
}
// PutTicketsInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2023-05-13 16:46:48 +00:00
type PutTicketsInternalServerError struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put tickets internal server error response has a 2xx status code
func (o *PutTicketsInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put tickets internal server error response has a 3xx status code
func (o *PutTicketsInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this put tickets internal server error response has a 4xx status code
func (o *PutTicketsInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this put tickets internal server error response has a 5xx status code
func (o *PutTicketsInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this put tickets internal server error response a status code equal to that given
func (o *PutTicketsInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the put tickets internal server error response
func (o *PutTicketsInternalServerError) Code() int {
return 500
}
func (o *PutTicketsInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsInternalServerError %s", 500, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /tickets][%d] putTicketsInternalServerError %s", 500, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutTicketsInternalServerError) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutTicketsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(members_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2023-05-13 16:46:48 +00:00
return err
}
return nil
}