github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/examples/generated/restapi/operations/pet/get_pet_by_id_responses.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package pet
     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  	"net/http"
    10  
    11  	"github.com/go-openapi/runtime"
    12  
    13  	"github.com/thetreep/go-swagger/examples/generated/models"
    14  )
    15  
    16  // GetPetByIDOKCode is the HTTP code returned for type GetPetByIDOK
    17  const GetPetByIDOKCode int = 200
    18  
    19  /*
    20  GetPetByIDOK successful operation
    21  
    22  swagger:response getPetByIdOK
    23  */
    24  type GetPetByIDOK struct {
    25  
    26  	/*
    27  	  In: Body
    28  	*/
    29  	Payload *models.Pet `json:"body,omitempty"`
    30  }
    31  
    32  // NewGetPetByIDOK creates GetPetByIDOK with default headers values
    33  func NewGetPetByIDOK() *GetPetByIDOK {
    34  
    35  	return &GetPetByIDOK{}
    36  }
    37  
    38  // WithPayload adds the payload to the get pet by Id o k response
    39  func (o *GetPetByIDOK) WithPayload(payload *models.Pet) *GetPetByIDOK {
    40  	o.Payload = payload
    41  	return o
    42  }
    43  
    44  // SetPayload sets the payload to the get pet by Id o k response
    45  func (o *GetPetByIDOK) SetPayload(payload *models.Pet) {
    46  	o.Payload = payload
    47  }
    48  
    49  // WriteResponse to the client
    50  func (o *GetPetByIDOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    51  
    52  	rw.WriteHeader(200)
    53  	if o.Payload != nil {
    54  		payload := o.Payload
    55  		if err := producer.Produce(rw, payload); err != nil {
    56  			panic(err) // let the recovery middleware deal with this
    57  		}
    58  	}
    59  }
    60  
    61  // GetPetByIDBadRequestCode is the HTTP code returned for type GetPetByIDBadRequest
    62  const GetPetByIDBadRequestCode int = 400
    63  
    64  /*
    65  GetPetByIDBadRequest Invalid ID supplied
    66  
    67  swagger:response getPetByIdBadRequest
    68  */
    69  type GetPetByIDBadRequest struct {
    70  }
    71  
    72  // NewGetPetByIDBadRequest creates GetPetByIDBadRequest with default headers values
    73  func NewGetPetByIDBadRequest() *GetPetByIDBadRequest {
    74  
    75  	return &GetPetByIDBadRequest{}
    76  }
    77  
    78  // WriteResponse to the client
    79  func (o *GetPetByIDBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    80  
    81  	rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
    82  
    83  	rw.WriteHeader(400)
    84  }
    85  
    86  // GetPetByIDNotFoundCode is the HTTP code returned for type GetPetByIDNotFound
    87  const GetPetByIDNotFoundCode int = 404
    88  
    89  /*
    90  GetPetByIDNotFound Pet not found
    91  
    92  swagger:response getPetByIdNotFound
    93  */
    94  type GetPetByIDNotFound struct {
    95  }
    96  
    97  // NewGetPetByIDNotFound creates GetPetByIDNotFound with default headers values
    98  func NewGetPetByIDNotFound() *GetPetByIDNotFound {
    99  
   100  	return &GetPetByIDNotFound{}
   101  }
   102  
   103  // WriteResponse to the client
   104  func (o *GetPetByIDNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
   105  
   106  	rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
   107  
   108  	rw.WriteHeader(404)
   109  }