github.com/josephspurrier/go-swagger@v0.2.1-0.20221129144919-1f672a142a00/examples/contributed-templates/stratoscale/client/store/order_create_responses.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package store
     4  
     5  // This file was generated by the swagger tool.
     6  // Editing this file might prove futile when you re-run the swagger generate command
     7  
     8  import (
     9  	"fmt"
    10  	"io"
    11  
    12  	"github.com/go-openapi/runtime"
    13  	"github.com/go-openapi/strfmt"
    14  
    15  	"github.com/go-swagger/go-swagger/examples/contributed-templates/stratoscale/models"
    16  )
    17  
    18  // OrderCreateReader is a Reader for the OrderCreate structure.
    19  type OrderCreateReader struct {
    20  	formats strfmt.Registry
    21  }
    22  
    23  // ReadResponse reads a server response into the received o.
    24  func (o *OrderCreateReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
    25  	switch response.Code() {
    26  	case 200:
    27  		result := NewOrderCreateOK()
    28  		if err := result.readResponse(response, consumer, o.formats); err != nil {
    29  			return nil, err
    30  		}
    31  		return result, nil
    32  	case 400:
    33  		result := NewOrderCreateBadRequest()
    34  		if err := result.readResponse(response, consumer, o.formats); err != nil {
    35  			return nil, err
    36  		}
    37  		return nil, result
    38  	default:
    39  		return nil, runtime.NewAPIError("response status code does not match any response statuses defined for this endpoint in the swagger spec", response, response.Code())
    40  	}
    41  }
    42  
    43  // NewOrderCreateOK creates a OrderCreateOK with default headers values
    44  func NewOrderCreateOK() *OrderCreateOK {
    45  	return &OrderCreateOK{}
    46  }
    47  
    48  /*
    49  	OrderCreateOK describes a response with status code 200, with default header values.
    50  
    51  successful operation
    52  */
    53  type OrderCreateOK struct {
    54  	Payload *models.Order
    55  }
    56  
    57  // IsSuccess returns true when this order create o k response returns a 2xx status code
    58  func (o *OrderCreateOK) IsSuccess() bool {
    59  	return true
    60  }
    61  
    62  // IsRedirect returns true when this order create o k response returns a 3xx status code
    63  func (o *OrderCreateOK) IsRedirect() bool {
    64  	return false
    65  }
    66  
    67  // IsClientError returns true when this order create o k response returns a 4xx status code
    68  func (o *OrderCreateOK) IsClientError() bool {
    69  	return false
    70  }
    71  
    72  // IsServerError returns true when this order create o k response returns a 5xx status code
    73  func (o *OrderCreateOK) IsServerError() bool {
    74  	return false
    75  }
    76  
    77  // IsCode returns true when this order create o k response returns a 4xx status code
    78  func (o *OrderCreateOK) IsCode(code int) bool {
    79  	return code == 200
    80  }
    81  
    82  func (o *OrderCreateOK) Error() string {
    83  	return fmt.Sprintf("[POST /store/order][%d] orderCreateOK  %+v", 200, o.Payload)
    84  }
    85  
    86  func (o *OrderCreateOK) String() string {
    87  	return fmt.Sprintf("[POST /store/order][%d] orderCreateOK  %+v", 200, o.Payload)
    88  }
    89  
    90  func (o *OrderCreateOK) GetPayload() *models.Order {
    91  	return o.Payload
    92  }
    93  
    94  func (o *OrderCreateOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
    95  
    96  	o.Payload = new(models.Order)
    97  
    98  	// response payload
    99  	if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
   100  		return err
   101  	}
   102  
   103  	return nil
   104  }
   105  
   106  // NewOrderCreateBadRequest creates a OrderCreateBadRequest with default headers values
   107  func NewOrderCreateBadRequest() *OrderCreateBadRequest {
   108  	return &OrderCreateBadRequest{}
   109  }
   110  
   111  /*
   112  	OrderCreateBadRequest describes a response with status code 400, with default header values.
   113  
   114  Invalid Order
   115  */
   116  type OrderCreateBadRequest struct {
   117  }
   118  
   119  // IsSuccess returns true when this order create bad request response returns a 2xx status code
   120  func (o *OrderCreateBadRequest) IsSuccess() bool {
   121  	return false
   122  }
   123  
   124  // IsRedirect returns true when this order create bad request response returns a 3xx status code
   125  func (o *OrderCreateBadRequest) IsRedirect() bool {
   126  	return false
   127  }
   128  
   129  // IsClientError returns true when this order create bad request response returns a 4xx status code
   130  func (o *OrderCreateBadRequest) IsClientError() bool {
   131  	return true
   132  }
   133  
   134  // IsServerError returns true when this order create bad request response returns a 5xx status code
   135  func (o *OrderCreateBadRequest) IsServerError() bool {
   136  	return false
   137  }
   138  
   139  // IsCode returns true when this order create bad request response returns a 4xx status code
   140  func (o *OrderCreateBadRequest) IsCode(code int) bool {
   141  	return code == 400
   142  }
   143  
   144  func (o *OrderCreateBadRequest) Error() string {
   145  	return fmt.Sprintf("[POST /store/order][%d] orderCreateBadRequest ", 400)
   146  }
   147  
   148  func (o *OrderCreateBadRequest) String() string {
   149  	return fmt.Sprintf("[POST /store/order][%d] orderCreateBadRequest ", 400)
   150  }
   151  
   152  func (o *OrderCreateBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
   153  
   154  	return nil
   155  }