github.com/kaisawind/go-swagger@v0.19.0/examples/generated/restapi/operations/user/update_user_responses.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package user
     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  
    14  // UpdateUserBadRequestCode is the HTTP code returned for type UpdateUserBadRequest
    15  const UpdateUserBadRequestCode int = 400
    16  
    17  /*UpdateUserBadRequest Invalid user supplied
    18  
    19  swagger:response updateUserBadRequest
    20  */
    21  type UpdateUserBadRequest struct {
    22  }
    23  
    24  // NewUpdateUserBadRequest creates UpdateUserBadRequest with default headers values
    25  func NewUpdateUserBadRequest() *UpdateUserBadRequest {
    26  
    27  	return &UpdateUserBadRequest{}
    28  }
    29  
    30  // WriteResponse to the client
    31  func (o *UpdateUserBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    32  
    33  	rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
    34  
    35  	rw.WriteHeader(400)
    36  }
    37  
    38  // UpdateUserNotFoundCode is the HTTP code returned for type UpdateUserNotFound
    39  const UpdateUserNotFoundCode int = 404
    40  
    41  /*UpdateUserNotFound User not found
    42  
    43  swagger:response updateUserNotFound
    44  */
    45  type UpdateUserNotFound struct {
    46  }
    47  
    48  // NewUpdateUserNotFound creates UpdateUserNotFound with default headers values
    49  func NewUpdateUserNotFound() *UpdateUserNotFound {
    50  
    51  	return &UpdateUserNotFound{}
    52  }
    53  
    54  // WriteResponse to the client
    55  func (o *UpdateUserNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    56  
    57  	rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
    58  
    59  	rw.WriteHeader(404)
    60  }