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