3 Star 2 Fork 0

Gitee 极速下载/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/go-swagger/go-swagger
克隆/下载
get_task_comments_responses.go 3.51 KB
一键复制 编辑 原始数据 按行查看 历史
// 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"
)
// GetTaskCommentsOKCode is the HTTP code returned for type GetTaskCommentsOK
const GetTaskCommentsOKCode int = 200
/*GetTaskCommentsOK The list of comments
swagger:response getTaskCommentsOK
*/
type GetTaskCommentsOK struct {
/*
In: Body
*/
Payload []*models.Comment `json:"body,omitempty"`
}
// NewGetTaskCommentsOK creates GetTaskCommentsOK with default headers values
func NewGetTaskCommentsOK() *GetTaskCommentsOK {
return &GetTaskCommentsOK{}
}
// WithPayload adds the payload to the get task comments o k response
func (o *GetTaskCommentsOK) WithPayload(payload []*models.Comment) *GetTaskCommentsOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get task comments o k response
func (o *GetTaskCommentsOK) SetPayload(payload []*models.Comment) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetTaskCommentsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(200)
payload := o.Payload
if payload == nil {
payload = make([]*models.Comment, 0, 50)
}
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
/*GetTaskCommentsDefault Error response
swagger:response getTaskCommentsDefault
*/
type GetTaskCommentsDefault struct {
_statusCode int
/*
*/
XErrorCode string `json:"X-Error-Code"`
/*
In: Body
*/
Payload *models.Error `json:"body,omitempty"`
}
// NewGetTaskCommentsDefault creates GetTaskCommentsDefault with default headers values
func NewGetTaskCommentsDefault(code int) *GetTaskCommentsDefault {
if code <= 0 {
code = 500
}
return &GetTaskCommentsDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the get task comments default response
func (o *GetTaskCommentsDefault) WithStatusCode(code int) *GetTaskCommentsDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the get task comments default response
func (o *GetTaskCommentsDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithXErrorCode adds the xErrorCode to the get task comments default response
func (o *GetTaskCommentsDefault) WithXErrorCode(xErrorCode string) *GetTaskCommentsDefault {
o.XErrorCode = xErrorCode
return o
}
// SetXErrorCode sets the xErrorCode to the get task comments default response
func (o *GetTaskCommentsDefault) SetXErrorCode(xErrorCode string) {
o.XErrorCode = xErrorCode
}
// WithPayload adds the payload to the get task comments default response
func (o *GetTaskCommentsDefault) WithPayload(payload *models.Error) *GetTaskCommentsDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get task comments default response
func (o *GetTaskCommentsDefault) SetPayload(payload *models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetTaskCommentsDefault) 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.17.2

搜索帮助