2021-01-08 17:40:28 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-01-19 16:58:40 +00:00
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
2021-01-08 17:40:28 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package strains
// 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"
2021-01-10 17:03:26 +00:00
"code.tnxs.net/taxnexus/lib/api/metrc-gw/metrc_gw_models"
2021-01-08 17:40:28 +00:00
)
// PostStrainsReader is a Reader for the PostStrains structure.
type PostStrainsReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * PostStrainsReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewPostStrainsOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewPostStrainsUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewPostStrainsForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewPostStrainsNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewPostStrainsInternalServerError ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
default :
2021-02-09 16:56:57 +00:00
return nil , runtime . NewAPIError ( "response status code does not match any response statuses defined for this endpoint in the swagger spec" , response , response . Code ( ) )
2021-01-08 17:40:28 +00:00
}
}
// NewPostStrainsOK creates a PostStrainsOK with default headers values
func NewPostStrainsOK ( ) * PostStrainsOK {
return & PostStrainsOK { }
}
2021-02-09 16:56:57 +00:00
/ * PostStrainsOK describes a response with status code 200 , with default header values .
2021-01-08 17:40:28 +00:00
An array of Strain records with the new IDs
* /
type PostStrainsOK struct {
Payload * metrc_gw_models . StrainResponse
}
func ( o * PostStrainsOK ) Error ( ) string {
return fmt . Sprintf ( "[POST /strains][%d] postStrainsOK %+v" , 200 , o . Payload )
}
func ( o * PostStrainsOK ) GetPayload ( ) * metrc_gw_models . StrainResponse {
return o . Payload
}
func ( o * PostStrainsOK ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
o . Payload = new ( metrc_gw_models . StrainResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewPostStrainsUnauthorized creates a PostStrainsUnauthorized with default headers values
func NewPostStrainsUnauthorized ( ) * PostStrainsUnauthorized {
return & PostStrainsUnauthorized { }
}
2021-02-09 16:56:57 +00:00
/ * PostStrainsUnauthorized describes a response with status code 401 , with default header values .
2021-01-08 17:40:28 +00:00
Access unauthorized , invalid API - KEY was used
* /
type PostStrainsUnauthorized struct {
Payload * metrc_gw_models . Error
}
func ( o * PostStrainsUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[POST /strains][%d] postStrainsUnauthorized %+v" , 401 , o . Payload )
}
func ( o * PostStrainsUnauthorized ) GetPayload ( ) * metrc_gw_models . Error {
return o . Payload
}
func ( o * PostStrainsUnauthorized ) 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
}
// NewPostStrainsForbidden creates a PostStrainsForbidden with default headers values
func NewPostStrainsForbidden ( ) * PostStrainsForbidden {
return & PostStrainsForbidden { }
}
2021-02-09 16:56:57 +00:00
/ * PostStrainsForbidden describes a response with status code 403 , with default header values .
2021-01-08 17:40:28 +00:00
Access forbidden , account lacks access
* /
type PostStrainsForbidden struct {
Payload * metrc_gw_models . Error
}
func ( o * PostStrainsForbidden ) Error ( ) string {
return fmt . Sprintf ( "[POST /strains][%d] postStrainsForbidden %+v" , 403 , o . Payload )
}
func ( o * PostStrainsForbidden ) GetPayload ( ) * metrc_gw_models . Error {
return o . Payload
}
func ( o * PostStrainsForbidden ) 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
}
// NewPostStrainsNotFound creates a PostStrainsNotFound with default headers values
func NewPostStrainsNotFound ( ) * PostStrainsNotFound {
return & PostStrainsNotFound { }
}
2021-02-09 16:56:57 +00:00
/ * PostStrainsNotFound describes a response with status code 404 , with default header values .
2021-01-08 17:40:28 +00:00
Resource was not found
* /
type PostStrainsNotFound struct {
Payload * metrc_gw_models . Error
}
func ( o * PostStrainsNotFound ) Error ( ) string {
return fmt . Sprintf ( "[POST /strains][%d] postStrainsNotFound %+v" , 404 , o . Payload )
}
func ( o * PostStrainsNotFound ) GetPayload ( ) * metrc_gw_models . Error {
return o . Payload
}
func ( o * PostStrainsNotFound ) 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
}
// NewPostStrainsInternalServerError creates a PostStrainsInternalServerError with default headers values
func NewPostStrainsInternalServerError ( ) * PostStrainsInternalServerError {
return & PostStrainsInternalServerError { }
}
2021-02-09 16:56:57 +00:00
/ * PostStrainsInternalServerError describes a response with status code 500 , with default header values .
2021-01-08 17:40:28 +00:00
Server Internal Error
* /
type PostStrainsInternalServerError struct {
Payload * metrc_gw_models . Error
}
func ( o * PostStrainsInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[POST /strains][%d] postStrainsInternalServerError %+v" , 500 , o . Payload )
}
func ( o * PostStrainsInternalServerError ) GetPayload ( ) * metrc_gw_models . Error {
return o . Payload
}
func ( o * PostStrainsInternalServerError ) 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
}