代码拉取完成,页面将自动刷新
// 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"
)
// GetLoginOKCode is the HTTP code returned for type GetLoginOK
const GetLoginOKCode int = 200
/*GetLoginOK login
swagger:response getLoginOK
*/
type GetLoginOK struct {
/*
In: Body
*/
Payload *GetLoginOKBody `json:"body,omitempty"`
}
// NewGetLoginOK creates GetLoginOK with default headers values
func NewGetLoginOK() *GetLoginOK {
return &GetLoginOK{}
}
// WithPayload adds the payload to the get login o k response
func (o *GetLoginOK) WithPayload(payload *GetLoginOKBody) *GetLoginOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get login o k response
func (o *GetLoginOK) SetPayload(payload *GetLoginOKBody) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetLoginOK) 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
}
}
}
/*GetLoginDefault error
swagger:response getLoginDefault
*/
type GetLoginDefault struct {
_statusCode int
/*
In: Body
*/
Payload *models.Error `json:"body,omitempty"`
}
// NewGetLoginDefault creates GetLoginDefault with default headers values
func NewGetLoginDefault(code int) *GetLoginDefault {
if code <= 0 {
code = 500
}
return &GetLoginDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the get login default response
func (o *GetLoginDefault) WithStatusCode(code int) *GetLoginDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the get login default response
func (o *GetLoginDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithPayload adds the payload to the get login default response
func (o *GetLoginDefault) WithPayload(payload *models.Error) *GetLoginDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the get login default response
func (o *GetLoginDefault) SetPayload(payload *models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *GetLoginDefault) 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
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。