// 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 users import ( "encoding/json" stderrors "errors" "fmt" "io" "code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models" "github.com/go-openapi/runtime" "github.com/go-openapi/strfmt" ) // PostUsersReader is a Reader for the PostUsers structure. type PostUsersReader struct { formats strfmt.Registry } // ReadResponse reads a server response into the received o. func (o *PostUsersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) { switch response.Code() { case 200: result := NewPostUsersOK() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return result, nil case 401: result := NewPostUsersUnauthorized() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 403: result := NewPostUsersForbidden() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 404: result := NewPostUsersNotFound() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 422: result := NewPostUsersUnprocessableEntity() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 500: result := NewPostUsersInternalServerError() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result default: return nil, runtime.NewAPIError("[POST /users] postUsers", response, response.Code()) } } // NewPostUsersOK creates a PostUsersOK with default headers values func NewPostUsersOK() *PostUsersOK { return &PostUsersOK{} } // PostUsersOK describes a response with status code 200, with default header values. // // Response with User objects type PostUsersOK struct { Payload *sfgate_models.UserResponse } // IsSuccess returns true when this post users o k response has a 2xx status code func (o *PostUsersOK) IsSuccess() bool { return true } // IsRedirect returns true when this post users o k response has a 3xx status code func (o *PostUsersOK) IsRedirect() bool { return false } // IsClientError returns true when this post users o k response has a 4xx status code func (o *PostUsersOK) IsClientError() bool { return false } // IsServerError returns true when this post users o k response has a 5xx status code func (o *PostUsersOK) IsServerError() bool { return false } // IsCode returns true when this post users o k response a status code equal to that given func (o *PostUsersOK) IsCode(code int) bool { return code == 200 } // Code gets the status code for the post users o k response func (o *PostUsersOK) Code() int { return 200 } func (o *PostUsersOK) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersOK %s", 200, payload) } func (o *PostUsersOK) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersOK %s", 200, payload) } func (o *PostUsersOK) GetPayload() *sfgate_models.UserResponse { return o.Payload } func (o *PostUsersOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sfgate_models.UserResponse) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil } // NewPostUsersUnauthorized creates a PostUsersUnauthorized with default headers values func NewPostUsersUnauthorized() *PostUsersUnauthorized { return &PostUsersUnauthorized{} } // PostUsersUnauthorized describes a response with status code 401, with default header values. // // Access unauthorized, invalid API-KEY was used type PostUsersUnauthorized struct { Payload *sfgate_models.Error } // IsSuccess returns true when this post users unauthorized response has a 2xx status code func (o *PostUsersUnauthorized) IsSuccess() bool { return false } // IsRedirect returns true when this post users unauthorized response has a 3xx status code func (o *PostUsersUnauthorized) IsRedirect() bool { return false } // IsClientError returns true when this post users unauthorized response has a 4xx status code func (o *PostUsersUnauthorized) IsClientError() bool { return true } // IsServerError returns true when this post users unauthorized response has a 5xx status code func (o *PostUsersUnauthorized) IsServerError() bool { return false } // IsCode returns true when this post users unauthorized response a status code equal to that given func (o *PostUsersUnauthorized) IsCode(code int) bool { return code == 401 } // Code gets the status code for the post users unauthorized response func (o *PostUsersUnauthorized) Code() int { return 401 } func (o *PostUsersUnauthorized) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersUnauthorized %s", 401, payload) } func (o *PostUsersUnauthorized) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersUnauthorized %s", 401, payload) } func (o *PostUsersUnauthorized) GetPayload() *sfgate_models.Error { return o.Payload } func (o *PostUsersUnauthorized) 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 && !stderrors.Is(err, io.EOF) { return err } return nil } // NewPostUsersForbidden creates a PostUsersForbidden with default headers values func NewPostUsersForbidden() *PostUsersForbidden { return &PostUsersForbidden{} } // PostUsersForbidden describes a response with status code 403, with default header values. // // Access forbidden, account lacks access type PostUsersForbidden struct { Payload *sfgate_models.Error } // IsSuccess returns true when this post users forbidden response has a 2xx status code func (o *PostUsersForbidden) IsSuccess() bool { return false } // IsRedirect returns true when this post users forbidden response has a 3xx status code func (o *PostUsersForbidden) IsRedirect() bool { return false } // IsClientError returns true when this post users forbidden response has a 4xx status code func (o *PostUsersForbidden) IsClientError() bool { return true } // IsServerError returns true when this post users forbidden response has a 5xx status code func (o *PostUsersForbidden) IsServerError() bool { return false } // IsCode returns true when this post users forbidden response a status code equal to that given func (o *PostUsersForbidden) IsCode(code int) bool { return code == 403 } // Code gets the status code for the post users forbidden response func (o *PostUsersForbidden) Code() int { return 403 } func (o *PostUsersForbidden) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersForbidden %s", 403, payload) } func (o *PostUsersForbidden) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersForbidden %s", 403, payload) } func (o *PostUsersForbidden) GetPayload() *sfgate_models.Error { return o.Payload } func (o *PostUsersForbidden) 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 && !stderrors.Is(err, io.EOF) { return err } return nil } // NewPostUsersNotFound creates a PostUsersNotFound with default headers values func NewPostUsersNotFound() *PostUsersNotFound { return &PostUsersNotFound{} } // PostUsersNotFound describes a response with status code 404, with default header values. // // Resource was not found type PostUsersNotFound struct { Payload *sfgate_models.Error } // IsSuccess returns true when this post users not found response has a 2xx status code func (o *PostUsersNotFound) IsSuccess() bool { return false } // IsRedirect returns true when this post users not found response has a 3xx status code func (o *PostUsersNotFound) IsRedirect() bool { return false } // IsClientError returns true when this post users not found response has a 4xx status code func (o *PostUsersNotFound) IsClientError() bool { return true } // IsServerError returns true when this post users not found response has a 5xx status code func (o *PostUsersNotFound) IsServerError() bool { return false } // IsCode returns true when this post users not found response a status code equal to that given func (o *PostUsersNotFound) IsCode(code int) bool { return code == 404 } // Code gets the status code for the post users not found response func (o *PostUsersNotFound) Code() int { return 404 } func (o *PostUsersNotFound) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersNotFound %s", 404, payload) } func (o *PostUsersNotFound) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersNotFound %s", 404, payload) } func (o *PostUsersNotFound) GetPayload() *sfgate_models.Error { return o.Payload } func (o *PostUsersNotFound) 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 && !stderrors.Is(err, io.EOF) { return err } return nil } // NewPostUsersUnprocessableEntity creates a PostUsersUnprocessableEntity with default headers values func NewPostUsersUnprocessableEntity() *PostUsersUnprocessableEntity { return &PostUsersUnprocessableEntity{} } // PostUsersUnprocessableEntity describes a response with status code 422, with default header values. // // Unprocessable Entity, likely a bad parameter type PostUsersUnprocessableEntity struct { Payload *sfgate_models.Error } // IsSuccess returns true when this post users unprocessable entity response has a 2xx status code func (o *PostUsersUnprocessableEntity) IsSuccess() bool { return false } // IsRedirect returns true when this post users unprocessable entity response has a 3xx status code func (o *PostUsersUnprocessableEntity) IsRedirect() bool { return false } // IsClientError returns true when this post users unprocessable entity response has a 4xx status code func (o *PostUsersUnprocessableEntity) IsClientError() bool { return true } // IsServerError returns true when this post users unprocessable entity response has a 5xx status code func (o *PostUsersUnprocessableEntity) IsServerError() bool { return false } // IsCode returns true when this post users unprocessable entity response a status code equal to that given func (o *PostUsersUnprocessableEntity) IsCode(code int) bool { return code == 422 } // Code gets the status code for the post users unprocessable entity response func (o *PostUsersUnprocessableEntity) Code() int { return 422 } func (o *PostUsersUnprocessableEntity) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersUnprocessableEntity %s", 422, payload) } func (o *PostUsersUnprocessableEntity) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersUnprocessableEntity %s", 422, payload) } func (o *PostUsersUnprocessableEntity) GetPayload() *sfgate_models.Error { return o.Payload } func (o *PostUsersUnprocessableEntity) 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 && !stderrors.Is(err, io.EOF) { return err } return nil } // NewPostUsersInternalServerError creates a PostUsersInternalServerError with default headers values func NewPostUsersInternalServerError() *PostUsersInternalServerError { return &PostUsersInternalServerError{} } // PostUsersInternalServerError describes a response with status code 500, with default header values. // // Server Internal Error type PostUsersInternalServerError struct { Payload *sfgate_models.Error } // IsSuccess returns true when this post users internal server error response has a 2xx status code func (o *PostUsersInternalServerError) IsSuccess() bool { return false } // IsRedirect returns true when this post users internal server error response has a 3xx status code func (o *PostUsersInternalServerError) IsRedirect() bool { return false } // IsClientError returns true when this post users internal server error response has a 4xx status code func (o *PostUsersInternalServerError) IsClientError() bool { return false } // IsServerError returns true when this post users internal server error response has a 5xx status code func (o *PostUsersInternalServerError) IsServerError() bool { return true } // IsCode returns true when this post users internal server error response a status code equal to that given func (o *PostUsersInternalServerError) IsCode(code int) bool { return code == 500 } // Code gets the status code for the post users internal server error response func (o *PostUsersInternalServerError) Code() int { return 500 } func (o *PostUsersInternalServerError) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersInternalServerError %s", 500, payload) } func (o *PostUsersInternalServerError) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[POST /users][%d] postUsersInternalServerError %s", 500, payload) } func (o *PostUsersInternalServerError) GetPayload() *sfgate_models.Error { return o.Payload } func (o *PostUsersInternalServerError) 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 && !stderrors.Is(err, io.EOF) { return err } return nil }