3 Star 2 Fork 0

Gitee 极速下载/go-swagger

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/go-swagger/go-swagger
Clone or Download
get_task_details_responses.go 4.80 KB
Copy Edit Raw Blame History
// Code generated by go-swagger; DO NOT EDIT.
package tasks
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/runtime"
models "github.com/go-swagger/go-swagger/examples/task-tracker/models"
)
// GetTaskDetailsOKCode is the HTTP code returned for type GetTaskDetailsOK
const GetTaskDetailsOKCode int = 200
/*GetTaskDetailsOK Task details
swagger:response getTaskDetailsOK
*/
type GetTaskDetailsOK struct {
/*
In: Body
*/
Payload *models.Task `json:"body,omitempty"`
}
// NewGetTaskDetailsOK creates GetTaskDetailsOK with default headers values
func NewGetTaskDetailsOK() *GetTaskDetailsOK {
return &GetTaskDetailsOK{}
}
// WithPayload adds the payload to the get task details o k response
func (o *GetTaskDetailsOK) WithPayload(payload *models.Task) *GetTaskDetailsOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get task details o k response
func (o *GetTaskDetailsOK) SetPayload(payload *models.Task) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetTaskDetailsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(200)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// GetTaskDetailsUnprocessableEntityCode is the HTTP code returned for type GetTaskDetailsUnprocessableEntity
const GetTaskDetailsUnprocessableEntityCode int = 422
/*GetTaskDetailsUnprocessableEntity Validation error
swagger:response getTaskDetailsUnprocessableEntity
*/
type GetTaskDetailsUnprocessableEntity struct {
/*
In: Body
*/
Payload *models.ValidationError `json:"body,omitempty"`
}
// NewGetTaskDetailsUnprocessableEntity creates GetTaskDetailsUnprocessableEntity with default headers values
func NewGetTaskDetailsUnprocessableEntity() *GetTaskDetailsUnprocessableEntity {
return &GetTaskDetailsUnprocessableEntity{}
}
// WithPayload adds the payload to the get task details unprocessable entity response
func (o *GetTaskDetailsUnprocessableEntity) WithPayload(payload *models.ValidationError) *GetTaskDetailsUnprocessableEntity {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get task details unprocessable entity response
func (o *GetTaskDetailsUnprocessableEntity) SetPayload(payload *models.ValidationError) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetTaskDetailsUnprocessableEntity) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(422)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
/*GetTaskDetailsDefault Error response
swagger:response getTaskDetailsDefault
*/
type GetTaskDetailsDefault struct {
_statusCode int
/*
*/
XErrorCode string `json:"X-Error-Code"`
/*
In: Body
*/
Payload *models.Error `json:"body,omitempty"`
}
// NewGetTaskDetailsDefault creates GetTaskDetailsDefault with default headers values
func NewGetTaskDetailsDefault(code int) *GetTaskDetailsDefault {
if code <= 0 {
code = 500
}
return &GetTaskDetailsDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the get task details default response
func (o *GetTaskDetailsDefault) WithStatusCode(code int) *GetTaskDetailsDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the get task details default response
func (o *GetTaskDetailsDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithXErrorCode adds the xErrorCode to the get task details default response
func (o *GetTaskDetailsDefault) WithXErrorCode(xErrorCode string) *GetTaskDetailsDefault {
o.XErrorCode = xErrorCode
return o
}
// SetXErrorCode sets the xErrorCode to the get task details default response
func (o *GetTaskDetailsDefault) SetXErrorCode(xErrorCode string) {
o.XErrorCode = xErrorCode
}
// WithPayload adds the payload to the get task details default response
func (o *GetTaskDetailsDefault) WithPayload(payload *models.Error) *GetTaskDetailsDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get task details default response
func (o *GetTaskDetailsDefault) SetPayload(payload *models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetTaskDetailsDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
// response header X-Error-Code
xErrorCode := o.XErrorCode
if xErrorCode != "" {
rw.Header().Set("X-Error-Code", xErrorCode)
}
rw.WriteHeader(o._statusCode)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/go-swagger.git
git@gitee.com:mirrors/go-swagger.git
mirrors
go-swagger
go-swagger
v0.19.0

Search