230 lines
6.2 KiB
Go
230 lines
6.2 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package harvests
|
|
|
|
// 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/taxnexus/lib/api/metrc-gw/metrc_gw_models"
|
|
)
|
|
|
|
// PutHarvestsReader is a Reader for the PutHarvests structure.
|
|
type PutHarvestsReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *PutHarvestsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewPutHarvestsOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 401:
|
|
result := NewPutHarvestsUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 403:
|
|
result := NewPutHarvestsForbidden()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 404:
|
|
result := NewPutHarvestsNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 500:
|
|
result := NewPutHarvestsInternalServerError()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
|
|
default:
|
|
return nil, runtime.NewAPIError("unknown error", response, response.Code())
|
|
}
|
|
}
|
|
|
|
// NewPutHarvestsOK creates a PutHarvestsOK with default headers values
|
|
func NewPutHarvestsOK() *PutHarvestsOK {
|
|
return &PutHarvestsOK{}
|
|
}
|
|
|
|
/*PutHarvestsOK handles this case with default header values.
|
|
|
|
An array of Harvest Update records
|
|
*/
|
|
type PutHarvestsOK struct {
|
|
Payload *metrc_gw_models.HarvestUpdateResponse
|
|
}
|
|
|
|
func (o *PutHarvestsOK) Error() string {
|
|
return fmt.Sprintf("[PUT /harvests][%d] putHarvestsOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *PutHarvestsOK) GetPayload() *metrc_gw_models.HarvestUpdateResponse {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *PutHarvestsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(metrc_gw_models.HarvestUpdateResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutHarvestsUnauthorized creates a PutHarvestsUnauthorized with default headers values
|
|
func NewPutHarvestsUnauthorized() *PutHarvestsUnauthorized {
|
|
return &PutHarvestsUnauthorized{}
|
|
}
|
|
|
|
/*PutHarvestsUnauthorized handles this case with default header values.
|
|
|
|
Access unauthorized, invalid API-KEY was used
|
|
*/
|
|
type PutHarvestsUnauthorized struct {
|
|
Payload *metrc_gw_models.Error
|
|
}
|
|
|
|
func (o *PutHarvestsUnauthorized) Error() string {
|
|
return fmt.Sprintf("[PUT /harvests][%d] putHarvestsUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *PutHarvestsUnauthorized) GetPayload() *metrc_gw_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *PutHarvestsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(metrc_gw_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutHarvestsForbidden creates a PutHarvestsForbidden with default headers values
|
|
func NewPutHarvestsForbidden() *PutHarvestsForbidden {
|
|
return &PutHarvestsForbidden{}
|
|
}
|
|
|
|
/*PutHarvestsForbidden handles this case with default header values.
|
|
|
|
Access forbidden, account lacks access
|
|
*/
|
|
type PutHarvestsForbidden struct {
|
|
Payload *metrc_gw_models.Error
|
|
}
|
|
|
|
func (o *PutHarvestsForbidden) Error() string {
|
|
return fmt.Sprintf("[PUT /harvests][%d] putHarvestsForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *PutHarvestsForbidden) GetPayload() *metrc_gw_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *PutHarvestsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(metrc_gw_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutHarvestsNotFound creates a PutHarvestsNotFound with default headers values
|
|
func NewPutHarvestsNotFound() *PutHarvestsNotFound {
|
|
return &PutHarvestsNotFound{}
|
|
}
|
|
|
|
/*PutHarvestsNotFound handles this case with default header values.
|
|
|
|
Resource was not found
|
|
*/
|
|
type PutHarvestsNotFound struct {
|
|
Payload *metrc_gw_models.Error
|
|
}
|
|
|
|
func (o *PutHarvestsNotFound) Error() string {
|
|
return fmt.Sprintf("[PUT /harvests][%d] putHarvestsNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *PutHarvestsNotFound) GetPayload() *metrc_gw_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *PutHarvestsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(metrc_gw_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewPutHarvestsInternalServerError creates a PutHarvestsInternalServerError with default headers values
|
|
func NewPutHarvestsInternalServerError() *PutHarvestsInternalServerError {
|
|
return &PutHarvestsInternalServerError{}
|
|
}
|
|
|
|
/*PutHarvestsInternalServerError handles this case with default header values.
|
|
|
|
Server Internal Error
|
|
*/
|
|
type PutHarvestsInternalServerError struct {
|
|
Payload *metrc_gw_models.Error
|
|
}
|
|
|
|
func (o *PutHarvestsInternalServerError) Error() string {
|
|
return fmt.Sprintf("[PUT /harvests][%d] putHarvestsInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *PutHarvestsInternalServerError) GetPayload() *metrc_gw_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *PutHarvestsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(metrc_gw_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|