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

package trigger_management

// 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"

	"github.com/Cyclops-Labs/cyclops-4-hpc.git/services/billing/models"
)

// PeriodicRunReader is a Reader for the PeriodicRun structure.
type PeriodicRunReader struct {
	formats strfmt.Registry
}

// ReadResponse reads a server response into the received o.
func (o *PeriodicRunReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
	switch response.Code() {
	case 202:
		result := NewPeriodicRunAccepted()
		if err := result.readResponse(response, consumer, o.formats); err != nil {
			return nil, err
		}
		return result, nil

	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())
	}
}

// NewPeriodicRunAccepted creates a PeriodicRunAccepted with default headers values
func NewPeriodicRunAccepted() *PeriodicRunAccepted {
	return &PeriodicRunAccepted{}
}

/*PeriodicRunAccepted handles this case with default header values.

The request for processing the periodic run had been added to the queue
*/
type PeriodicRunAccepted struct {
	Payload *models.ItemCreatedResponse
}

func (o *PeriodicRunAccepted) Error() string {
	return fmt.Sprintf("[GET /trigger/periodicrun][%d] periodicRunAccepted  %+v", 202, o.Payload)
}

func (o *PeriodicRunAccepted) GetPayload() *models.ItemCreatedResponse {
	return o.Payload
}

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

	o.Payload = new(models.ItemCreatedResponse)

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

	return nil
}