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

485 lines
15 KiB
Go

// 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"
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/members/members_models"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// GetTicketsReader is a Reader for the GetTickets structure.
type GetTicketsReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetTicketsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
switch response.Code() {
case 200:
result := NewGetTicketsOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewGetTicketsUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewGetTicketsForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewGetTicketsNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewGetTicketsUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewGetTicketsInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[GET /tickets] getTickets", response, response.Code())
}
}
// NewGetTicketsOK creates a GetTicketsOK with default headers values
func NewGetTicketsOK() *GetTicketsOK {
return &GetTicketsOK{}
}
// GetTicketsOK describes a response with status code 200, with default header values.
//
// Ticket Response Object
type GetTicketsOK struct {
Payload *members_models.TicketResponse
}
// IsSuccess returns true when this get tickets o k response has a 2xx status code
func (o *GetTicketsOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this get tickets o k response has a 3xx status code
func (o *GetTicketsOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this get tickets o k response has a 4xx status code
func (o *GetTicketsOK) IsClientError() bool {
return false
}
// IsServerError returns true when this get tickets o k response has a 5xx status code
func (o *GetTicketsOK) IsServerError() bool {
return false
}
// IsCode returns true when this get tickets o k response a status code equal to that given
func (o *GetTicketsOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the get tickets o k response
func (o *GetTicketsOK) Code() int {
return 200
}
func (o *GetTicketsOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsOK %s", 200, payload)
}
func (o *GetTicketsOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsOK %s", 200, payload)
}
func (o *GetTicketsOK) GetPayload() *members_models.TicketResponse {
return o.Payload
}
func (o *GetTicketsOK) 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) {
return err
}
return nil
}
// NewGetTicketsUnauthorized creates a GetTicketsUnauthorized with default headers values
func NewGetTicketsUnauthorized() *GetTicketsUnauthorized {
return &GetTicketsUnauthorized{}
}
// GetTicketsUnauthorized describes a response with status code 401, with default header values.
//
// Access Unauthorized, invalid API-KEY was used
type GetTicketsUnauthorized struct {
Payload *members_models.Error
}
// IsSuccess returns true when this get tickets unauthorized response has a 2xx status code
func (o *GetTicketsUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get tickets unauthorized response has a 3xx status code
func (o *GetTicketsUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this get tickets unauthorized response has a 4xx status code
func (o *GetTicketsUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this get tickets unauthorized response has a 5xx status code
func (o *GetTicketsUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this get tickets unauthorized response a status code equal to that given
func (o *GetTicketsUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the get tickets unauthorized response
func (o *GetTicketsUnauthorized) Code() int {
return 401
}
func (o *GetTicketsUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsUnauthorized %s", 401, payload)
}
func (o *GetTicketsUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsUnauthorized %s", 401, payload)
}
func (o *GetTicketsUnauthorized) GetPayload() *members_models.Error {
return o.Payload
}
func (o *GetTicketsUnauthorized) 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) {
return err
}
return nil
}
// NewGetTicketsForbidden creates a GetTicketsForbidden with default headers values
func NewGetTicketsForbidden() *GetTicketsForbidden {
return &GetTicketsForbidden{}
}
// GetTicketsForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
type GetTicketsForbidden struct {
AccessControlAllowOrigin string
Payload *members_models.Error
}
// IsSuccess returns true when this get tickets forbidden response has a 2xx status code
func (o *GetTicketsForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get tickets forbidden response has a 3xx status code
func (o *GetTicketsForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this get tickets forbidden response has a 4xx status code
func (o *GetTicketsForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this get tickets forbidden response has a 5xx status code
func (o *GetTicketsForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this get tickets forbidden response a status code equal to that given
func (o *GetTicketsForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the get tickets forbidden response
func (o *GetTicketsForbidden) Code() int {
return 403
}
func (o *GetTicketsForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsForbidden %s", 403, payload)
}
func (o *GetTicketsForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsForbidden %s", 403, payload)
}
func (o *GetTicketsForbidden) GetPayload() *members_models.Error {
return o.Payload
}
func (o *GetTicketsForbidden) 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) {
return err
}
return nil
}
// NewGetTicketsNotFound creates a GetTicketsNotFound with default headers values
func NewGetTicketsNotFound() *GetTicketsNotFound {
return &GetTicketsNotFound{}
}
// GetTicketsNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
type GetTicketsNotFound struct {
Payload *members_models.Error
}
// IsSuccess returns true when this get tickets not found response has a 2xx status code
func (o *GetTicketsNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get tickets not found response has a 3xx status code
func (o *GetTicketsNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this get tickets not found response has a 4xx status code
func (o *GetTicketsNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this get tickets not found response has a 5xx status code
func (o *GetTicketsNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this get tickets not found response a status code equal to that given
func (o *GetTicketsNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the get tickets not found response
func (o *GetTicketsNotFound) Code() int {
return 404
}
func (o *GetTicketsNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsNotFound %s", 404, payload)
}
func (o *GetTicketsNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsNotFound %s", 404, payload)
}
func (o *GetTicketsNotFound) GetPayload() *members_models.Error {
return o.Payload
}
func (o *GetTicketsNotFound) 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) {
return err
}
return nil
}
// NewGetTicketsUnprocessableEntity creates a GetTicketsUnprocessableEntity with default headers values
func NewGetTicketsUnprocessableEntity() *GetTicketsUnprocessableEntity {
return &GetTicketsUnprocessableEntity{}
}
// GetTicketsUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
type GetTicketsUnprocessableEntity struct {
Payload *members_models.Error
}
// IsSuccess returns true when this get tickets unprocessable entity response has a 2xx status code
func (o *GetTicketsUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get tickets unprocessable entity response has a 3xx status code
func (o *GetTicketsUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this get tickets unprocessable entity response has a 4xx status code
func (o *GetTicketsUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this get tickets unprocessable entity response has a 5xx status code
func (o *GetTicketsUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this get tickets unprocessable entity response a status code equal to that given
func (o *GetTicketsUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the get tickets unprocessable entity response
func (o *GetTicketsUnprocessableEntity) Code() int {
return 422
}
func (o *GetTicketsUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsUnprocessableEntity %s", 422, payload)
}
func (o *GetTicketsUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsUnprocessableEntity %s", 422, payload)
}
func (o *GetTicketsUnprocessableEntity) GetPayload() *members_models.Error {
return o.Payload
}
func (o *GetTicketsUnprocessableEntity) 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) {
return err
}
return nil
}
// NewGetTicketsInternalServerError creates a GetTicketsInternalServerError with default headers values
func NewGetTicketsInternalServerError() *GetTicketsInternalServerError {
return &GetTicketsInternalServerError{}
}
// GetTicketsInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
type GetTicketsInternalServerError struct {
Payload *members_models.Error
}
// IsSuccess returns true when this get tickets internal server error response has a 2xx status code
func (o *GetTicketsInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get tickets internal server error response has a 3xx status code
func (o *GetTicketsInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this get tickets internal server error response has a 4xx status code
func (o *GetTicketsInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this get tickets internal server error response has a 5xx status code
func (o *GetTicketsInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this get tickets internal server error response a status code equal to that given
func (o *GetTicketsInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the get tickets internal server error response
func (o *GetTicketsInternalServerError) Code() int {
return 500
}
func (o *GetTicketsInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsInternalServerError %s", 500, payload)
}
func (o *GetTicketsInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /tickets][%d] getTicketsInternalServerError %s", 500, payload)
}
func (o *GetTicketsInternalServerError) GetPayload() *members_models.Error {
return o.Payload
}
func (o *GetTicketsInternalServerError) 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) {
return err
}
return nil
}