lib/api/sfgate/sfgate_client/notebooks/put_notebooks_responses.go

262 lines
7.6 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 notebooks
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"io"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
)
// PutNotebooksReader is a Reader for the PutNotebooks structure.
type PutNotebooksReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PutNotebooksReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewPutNotebooksOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPutNotebooksUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPutNotebooksForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPutNotebooksNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewPutNotebooksUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPutNotebooksInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("response status code does not match any response statuses defined for this endpoint in the swagger spec", response, response.Code())
}
}
// NewPutNotebooksOK creates a PutNotebooksOK with default headers values
func NewPutNotebooksOK() *PutNotebooksOK {
return &PutNotebooksOK{}
}
/* PutNotebooksOK describes a response with status code 200, with default header values.
Taxnexus Response with Notebook objects
*/
type PutNotebooksOK struct {
Payload *sfgate_models.NotebookResponse
}
func (o *PutNotebooksOK) Error() string {
return fmt.Sprintf("[PUT /notebooks][%d] putNotebooksOK %+v", 200, o.Payload)
}
func (o *PutNotebooksOK) GetPayload() *sfgate_models.NotebookResponse {
return o.Payload
}
func (o *PutNotebooksOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.NotebookResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPutNotebooksUnauthorized creates a PutNotebooksUnauthorized with default headers values
func NewPutNotebooksUnauthorized() *PutNotebooksUnauthorized {
return &PutNotebooksUnauthorized{}
}
/* PutNotebooksUnauthorized describes a response with status code 401, with default header values.
Access unauthorized, invalid API-KEY was used
*/
type PutNotebooksUnauthorized struct {
Payload *sfgate_models.Error
}
func (o *PutNotebooksUnauthorized) Error() string {
return fmt.Sprintf("[PUT /notebooks][%d] putNotebooksUnauthorized %+v", 401, o.Payload)
}
func (o *PutNotebooksUnauthorized) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PutNotebooksUnauthorized) 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 && err != io.EOF {
return err
}
return nil
}
// NewPutNotebooksForbidden creates a PutNotebooksForbidden with default headers values
func NewPutNotebooksForbidden() *PutNotebooksForbidden {
return &PutNotebooksForbidden{}
}
/* PutNotebooksForbidden describes a response with status code 403, with default header values.
Access forbidden, account lacks access
*/
type PutNotebooksForbidden struct {
Payload *sfgate_models.Error
}
func (o *PutNotebooksForbidden) Error() string {
return fmt.Sprintf("[PUT /notebooks][%d] putNotebooksForbidden %+v", 403, o.Payload)
}
func (o *PutNotebooksForbidden) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PutNotebooksForbidden) 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 && err != io.EOF {
return err
}
return nil
}
// NewPutNotebooksNotFound creates a PutNotebooksNotFound with default headers values
func NewPutNotebooksNotFound() *PutNotebooksNotFound {
return &PutNotebooksNotFound{}
}
/* PutNotebooksNotFound describes a response with status code 404, with default header values.
Resource was not found
*/
type PutNotebooksNotFound struct {
Payload *sfgate_models.Error
}
func (o *PutNotebooksNotFound) Error() string {
return fmt.Sprintf("[PUT /notebooks][%d] putNotebooksNotFound %+v", 404, o.Payload)
}
func (o *PutNotebooksNotFound) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PutNotebooksNotFound) 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 && err != io.EOF {
return err
}
return nil
}
// NewPutNotebooksUnprocessableEntity creates a PutNotebooksUnprocessableEntity with default headers values
func NewPutNotebooksUnprocessableEntity() *PutNotebooksUnprocessableEntity {
return &PutNotebooksUnprocessableEntity{}
}
/* PutNotebooksUnprocessableEntity describes a response with status code 422, with default header values.
Unprocessable Entity, likely a bad parameter
*/
type PutNotebooksUnprocessableEntity struct {
Payload *sfgate_models.Error
}
func (o *PutNotebooksUnprocessableEntity) Error() string {
return fmt.Sprintf("[PUT /notebooks][%d] putNotebooksUnprocessableEntity %+v", 422, o.Payload)
}
func (o *PutNotebooksUnprocessableEntity) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PutNotebooksUnprocessableEntity) 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 && err != io.EOF {
return err
}
return nil
}
// NewPutNotebooksInternalServerError creates a PutNotebooksInternalServerError with default headers values
func NewPutNotebooksInternalServerError() *PutNotebooksInternalServerError {
return &PutNotebooksInternalServerError{}
}
/* PutNotebooksInternalServerError describes a response with status code 500, with default header values.
Server Internal Error
*/
type PutNotebooksInternalServerError struct {
Payload *sfgate_models.Error
}
func (o *PutNotebooksInternalServerError) Error() string {
return fmt.Sprintf("[PUT /notebooks][%d] putNotebooksInternalServerError %+v", 500, o.Payload)
}
func (o *PutNotebooksInternalServerError) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PutNotebooksInternalServerError) 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 && err != io.EOF {
return err
}
return nil
}