Ai
1 Star 0 Fork 0

KathentGitee/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
get_auth_callback_responses.go 2.90 KB
一键复制 编辑 原始数据 按行查看 历史
fredbi 提交于 2018-07-04 23:04 +08:00 . regen examples
// Code generated by go-swagger; DO NOT EDIT.
package operations
// 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/oauth2/models"
)
// GetAuthCallbackOKCode is the HTTP code returned for type GetAuthCallbackOK
const GetAuthCallbackOKCode int = 200
/*GetAuthCallbackOK login
swagger:response getAuthCallbackOK
*/
type GetAuthCallbackOK struct {
/*
In: Body
*/
Payload *GetAuthCallbackOKBody `json:"body,omitempty"`
}
// NewGetAuthCallbackOK creates GetAuthCallbackOK with default headers values
func NewGetAuthCallbackOK() *GetAuthCallbackOK {
return &GetAuthCallbackOK{}
}
// WithPayload adds the payload to the get auth callback o k response
func (o *GetAuthCallbackOK) WithPayload(payload *GetAuthCallbackOKBody) *GetAuthCallbackOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get auth callback o k response
func (o *GetAuthCallbackOK) SetPayload(payload *GetAuthCallbackOKBody) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetAuthCallbackOK) 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
}
}
}
/*GetAuthCallbackDefault error
swagger:response getAuthCallbackDefault
*/
type GetAuthCallbackDefault struct {
_statusCode int
/*
In: Body
*/
Payload *models.Error `json:"body,omitempty"`
}
// NewGetAuthCallbackDefault creates GetAuthCallbackDefault with default headers values
func NewGetAuthCallbackDefault(code int) *GetAuthCallbackDefault {
if code <= 0 {
code = 500
}
return &GetAuthCallbackDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the get auth callback default response
func (o *GetAuthCallbackDefault) WithStatusCode(code int) *GetAuthCallbackDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the get auth callback default response
func (o *GetAuthCallbackDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithPayload adds the payload to the get auth callback default response
func (o *GetAuthCallbackDefault) WithPayload(payload *models.Error) *GetAuthCallbackDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get auth callback default response
func (o *GetAuthCallbackDefault) SetPayload(payload *models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetAuthCallbackDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
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/kathent/go-swagger.git
git@gitee.com:kathent/go-swagger.git
kathent
go-swagger
go-swagger
v0.19.0

搜索帮助