代码拉取完成,页面将自动刷新
// 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
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。