lib/api/members/members_client/attendees/put_attendees_responses.go

485 lines
15 KiB
Go
Raw Permalink 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 attendees
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"
)
// PutAttendeesReader is a Reader for the PutAttendees structure.
type PutAttendeesReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PutAttendeesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2023-05-13 16:46:48 +00:00
switch response.Code() {
case 200:
result := NewPutAttendeesOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPutAttendeesUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPutAttendeesForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPutAttendeesNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewPutAttendeesUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPutAttendeesInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[PUT /attendees] putAttendees", response, response.Code())
2023-05-13 16:46:48 +00:00
}
}
// NewPutAttendeesOK creates a PutAttendeesOK with default headers values
func NewPutAttendeesOK() *PutAttendeesOK {
return &PutAttendeesOK{}
}
// PutAttendeesOK describes a response with status code 200, with default header values.
//
// Attendee Response Object
2023-05-13 16:46:48 +00:00
type PutAttendeesOK struct {
Payload *members_models.AttendeeResponse
}
// IsSuccess returns true when this put attendees o k response has a 2xx status code
func (o *PutAttendeesOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this put attendees o k response has a 3xx status code
func (o *PutAttendeesOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this put attendees o k response has a 4xx status code
func (o *PutAttendeesOK) IsClientError() bool {
return false
}
// IsServerError returns true when this put attendees o k response has a 5xx status code
func (o *PutAttendeesOK) IsServerError() bool {
return false
}
// IsCode returns true when this put attendees o k response a status code equal to that given
func (o *PutAttendeesOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the put attendees o k response
func (o *PutAttendeesOK) Code() int {
return 200
}
func (o *PutAttendeesOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesOK %s", 200, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesOK %s", 200, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesOK) GetPayload() *members_models.AttendeeResponse {
return o.Payload
}
func (o *PutAttendeesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(members_models.AttendeeResponse)
// 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
}
// NewPutAttendeesUnauthorized creates a PutAttendeesUnauthorized with default headers values
func NewPutAttendeesUnauthorized() *PutAttendeesUnauthorized {
return &PutAttendeesUnauthorized{}
}
// PutAttendeesUnauthorized 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 PutAttendeesUnauthorized struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put attendees unauthorized response has a 2xx status code
func (o *PutAttendeesUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put attendees unauthorized response has a 3xx status code
func (o *PutAttendeesUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this put attendees unauthorized response has a 4xx status code
func (o *PutAttendeesUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this put attendees unauthorized response has a 5xx status code
func (o *PutAttendeesUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this put attendees unauthorized response a status code equal to that given
func (o *PutAttendeesUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the put attendees unauthorized response
func (o *PutAttendeesUnauthorized) Code() int {
return 401
}
func (o *PutAttendeesUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesUnauthorized %s", 401, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesUnauthorized %s", 401, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesUnauthorized) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutAttendeesUnauthorized) 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
}
// NewPutAttendeesForbidden creates a PutAttendeesForbidden with default headers values
func NewPutAttendeesForbidden() *PutAttendeesForbidden {
return &PutAttendeesForbidden{}
}
// PutAttendeesForbidden 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 PutAttendeesForbidden struct {
AccessControlAllowOrigin string
Payload *members_models.Error
}
// IsSuccess returns true when this put attendees forbidden response has a 2xx status code
func (o *PutAttendeesForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put attendees forbidden response has a 3xx status code
func (o *PutAttendeesForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this put attendees forbidden response has a 4xx status code
func (o *PutAttendeesForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this put attendees forbidden response has a 5xx status code
func (o *PutAttendeesForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this put attendees forbidden response a status code equal to that given
func (o *PutAttendeesForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the put attendees forbidden response
func (o *PutAttendeesForbidden) Code() int {
return 403
}
func (o *PutAttendeesForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesForbidden %s", 403, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesForbidden %s", 403, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesForbidden) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutAttendeesForbidden) 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
}
// NewPutAttendeesNotFound creates a PutAttendeesNotFound with default headers values
func NewPutAttendeesNotFound() *PutAttendeesNotFound {
return &PutAttendeesNotFound{}
}
// PutAttendeesNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2023-05-13 16:46:48 +00:00
type PutAttendeesNotFound struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put attendees not found response has a 2xx status code
func (o *PutAttendeesNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put attendees not found response has a 3xx status code
func (o *PutAttendeesNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this put attendees not found response has a 4xx status code
func (o *PutAttendeesNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this put attendees not found response has a 5xx status code
func (o *PutAttendeesNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this put attendees not found response a status code equal to that given
func (o *PutAttendeesNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the put attendees not found response
func (o *PutAttendeesNotFound) Code() int {
return 404
}
func (o *PutAttendeesNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesNotFound %s", 404, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesNotFound %s", 404, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesNotFound) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutAttendeesNotFound) 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
}
// NewPutAttendeesUnprocessableEntity creates a PutAttendeesUnprocessableEntity with default headers values
func NewPutAttendeesUnprocessableEntity() *PutAttendeesUnprocessableEntity {
return &PutAttendeesUnprocessableEntity{}
}
// PutAttendeesUnprocessableEntity 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 PutAttendeesUnprocessableEntity struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put attendees unprocessable entity response has a 2xx status code
func (o *PutAttendeesUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put attendees unprocessable entity response has a 3xx status code
func (o *PutAttendeesUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this put attendees unprocessable entity response has a 4xx status code
func (o *PutAttendeesUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this put attendees unprocessable entity response has a 5xx status code
func (o *PutAttendeesUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this put attendees unprocessable entity response a status code equal to that given
func (o *PutAttendeesUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the put attendees unprocessable entity response
func (o *PutAttendeesUnprocessableEntity) Code() int {
return 422
}
func (o *PutAttendeesUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesUnprocessableEntity %s", 422, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesUnprocessableEntity %s", 422, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesUnprocessableEntity) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutAttendeesUnprocessableEntity) 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
}
// NewPutAttendeesInternalServerError creates a PutAttendeesInternalServerError with default headers values
func NewPutAttendeesInternalServerError() *PutAttendeesInternalServerError {
return &PutAttendeesInternalServerError{}
}
// PutAttendeesInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2023-05-13 16:46:48 +00:00
type PutAttendeesInternalServerError struct {
Payload *members_models.Error
}
// IsSuccess returns true when this put attendees internal server error response has a 2xx status code
func (o *PutAttendeesInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put attendees internal server error response has a 3xx status code
func (o *PutAttendeesInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this put attendees internal server error response has a 4xx status code
func (o *PutAttendeesInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this put attendees internal server error response has a 5xx status code
func (o *PutAttendeesInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this put attendees internal server error response a status code equal to that given
func (o *PutAttendeesInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the put attendees internal server error response
func (o *PutAttendeesInternalServerError) Code() int {
return 500
}
func (o *PutAttendeesInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesInternalServerError %s", 500, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /attendees][%d] putAttendeesInternalServerError %s", 500, payload)
2023-05-13 16:46:48 +00:00
}
func (o *PutAttendeesInternalServerError) GetPayload() *members_models.Error {
return o.Payload
}
func (o *PutAttendeesInternalServerError) 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
}