// Code generated by go-swagger; DO NOT EDIT.

// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed

package accounts

// 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/crm/crm_models"
)

// PutAccountReader is a Reader for the PutAccount structure.
type PutAccountReader struct {
	formats strfmt.Registry
}

// ReadResponse reads a server response into the received o.
func (o *PutAccountReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
	switch response.Code() {
	case 200:
		result := NewPutAccountOK()
		if err := result.readResponse(response, consumer, o.formats); err != nil {
			return nil, err
		}
		return result, nil
	case 401:
		result := NewPutAccountUnauthorized()
		if err := result.readResponse(response, consumer, o.formats); err != nil {
			return nil, err
		}
		return nil, result
	case 403:
		result := NewPutAccountForbidden()
		if err := result.readResponse(response, consumer, o.formats); err != nil {
			return nil, err
		}
		return nil, result
	case 404:
		result := NewPutAccountNotFound()
		if err := result.readResponse(response, consumer, o.formats); err != nil {
			return nil, err
		}
		return nil, result
	case 422:
		result := NewPutAccountUnprocessableEntity()
		if err := result.readResponse(response, consumer, o.formats); err != nil {
			return nil, err
		}
		return nil, result
	case 500:
		result := NewPutAccountInternalServerError()
		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())
	}
}

// NewPutAccountOK creates a PutAccountOK with default headers values
func NewPutAccountOK() *PutAccountOK {
	return &PutAccountOK{}
}

/*PutAccountOK handles this case with default header values.

Taxnexus Response with Account objects with Contacts
*/
type PutAccountOK struct {
	AccessControlAllowOrigin string

	CacheControl string

	Payload *crm_models.AccountResponse
}

func (o *PutAccountOK) Error() string {
	return fmt.Sprintf("[PUT /accounts][%d] putAccountOK  %+v", 200, o.Payload)
}

func (o *PutAccountOK) GetPayload() *crm_models.AccountResponse {
	return o.Payload
}

func (o *PutAccountOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

	// response header Access-Control-Allow-Origin
	o.AccessControlAllowOrigin = response.GetHeader("Access-Control-Allow-Origin")

	// response header Cache-Control
	o.CacheControl = response.GetHeader("Cache-Control")

	o.Payload = new(crm_models.AccountResponse)

	// response payload
	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
		return err
	}

	return nil
}

// NewPutAccountUnauthorized creates a PutAccountUnauthorized with default headers values
func NewPutAccountUnauthorized() *PutAccountUnauthorized {
	return &PutAccountUnauthorized{}
}

/*PutAccountUnauthorized handles this case with default header values.

Access unauthorized, invalid API-KEY was used
*/
type PutAccountUnauthorized struct {
	AccessControlAllowOrigin string

	Payload *crm_models.Error
}

func (o *PutAccountUnauthorized) Error() string {
	return fmt.Sprintf("[PUT /accounts][%d] putAccountUnauthorized  %+v", 401, o.Payload)
}

func (o *PutAccountUnauthorized) GetPayload() *crm_models.Error {
	return o.Payload
}

func (o *PutAccountUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

	// response header Access-Control-Allow-Origin
	o.AccessControlAllowOrigin = response.GetHeader("Access-Control-Allow-Origin")

	o.Payload = new(crm_models.Error)

	// response payload
	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
		return err
	}

	return nil
}

// NewPutAccountForbidden creates a PutAccountForbidden with default headers values
func NewPutAccountForbidden() *PutAccountForbidden {
	return &PutAccountForbidden{}
}

/*PutAccountForbidden handles this case with default header values.

Access forbidden, account lacks access
*/
type PutAccountForbidden struct {
	AccessControlAllowOrigin string

	Payload *crm_models.Error
}

func (o *PutAccountForbidden) Error() string {
	return fmt.Sprintf("[PUT /accounts][%d] putAccountForbidden  %+v", 403, o.Payload)
}

func (o *PutAccountForbidden) GetPayload() *crm_models.Error {
	return o.Payload
}

func (o *PutAccountForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

	// response header Access-Control-Allow-Origin
	o.AccessControlAllowOrigin = response.GetHeader("Access-Control-Allow-Origin")

	o.Payload = new(crm_models.Error)

	// response payload
	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
		return err
	}

	return nil
}

// NewPutAccountNotFound creates a PutAccountNotFound with default headers values
func NewPutAccountNotFound() *PutAccountNotFound {
	return &PutAccountNotFound{}
}

/*PutAccountNotFound handles this case with default header values.

Resource was not found
*/
type PutAccountNotFound struct {
	AccessControlAllowOrigin string

	Payload *crm_models.Error
}

func (o *PutAccountNotFound) Error() string {
	return fmt.Sprintf("[PUT /accounts][%d] putAccountNotFound  %+v", 404, o.Payload)
}

func (o *PutAccountNotFound) GetPayload() *crm_models.Error {
	return o.Payload
}

func (o *PutAccountNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

	// response header Access-Control-Allow-Origin
	o.AccessControlAllowOrigin = response.GetHeader("Access-Control-Allow-Origin")

	o.Payload = new(crm_models.Error)

	// response payload
	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
		return err
	}

	return nil
}

// NewPutAccountUnprocessableEntity creates a PutAccountUnprocessableEntity with default headers values
func NewPutAccountUnprocessableEntity() *PutAccountUnprocessableEntity {
	return &PutAccountUnprocessableEntity{}
}

/*PutAccountUnprocessableEntity handles this case with default header values.

Unprocessable Entity, likely a bad parameter
*/
type PutAccountUnprocessableEntity struct {
	AccessControlAllowOrigin string

	Payload *crm_models.Error
}

func (o *PutAccountUnprocessableEntity) Error() string {
	return fmt.Sprintf("[PUT /accounts][%d] putAccountUnprocessableEntity  %+v", 422, o.Payload)
}

func (o *PutAccountUnprocessableEntity) GetPayload() *crm_models.Error {
	return o.Payload
}

func (o *PutAccountUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

	// response header Access-Control-Allow-Origin
	o.AccessControlAllowOrigin = response.GetHeader("Access-Control-Allow-Origin")

	o.Payload = new(crm_models.Error)

	// response payload
	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
		return err
	}

	return nil
}

// NewPutAccountInternalServerError creates a PutAccountInternalServerError with default headers values
func NewPutAccountInternalServerError() *PutAccountInternalServerError {
	return &PutAccountInternalServerError{}
}

/*PutAccountInternalServerError handles this case with default header values.

Server Internal Error
*/
type PutAccountInternalServerError struct {
	AccessControlAllowOrigin string

	Payload *crm_models.Error
}

func (o *PutAccountInternalServerError) Error() string {
	return fmt.Sprintf("[PUT /accounts][%d] putAccountInternalServerError  %+v", 500, o.Payload)
}

func (o *PutAccountInternalServerError) GetPayload() *crm_models.Error {
	return o.Payload
}

func (o *PutAccountInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

	// response header Access-Control-Allow-Origin
	o.AccessControlAllowOrigin = response.GetHeader("Access-Control-Allow-Origin")

	o.Payload = new(crm_models.Error)

	// response payload
	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
		return err
	}

	return nil
}