forked from rai-project/dlframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_info_responses.go
58 lines (43 loc) · 1.35 KB
/
user_info_responses.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Code generated by go-swagger; DO NOT EDIT.
package authentication
// 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/c3sr/dlframework/httpapi/models"
)
// UserInfoOKCode is the HTTP code returned for type UserInfoOK
const UserInfoOKCode int = 200
/*UserInfoOK user info o k
swagger:response userInfoOK
*/
type UserInfoOK struct {
/*
In: Body
*/
Payload *models.DlframeworkUserInfoResponse `json:"body,omitempty"`
}
// NewUserInfoOK creates UserInfoOK with default headers values
func NewUserInfoOK() *UserInfoOK {
return &UserInfoOK{}
}
// WithPayload adds the payload to the user info o k response
func (o *UserInfoOK) WithPayload(payload *models.DlframeworkUserInfoResponse) *UserInfoOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the user info o k response
func (o *UserInfoOK) SetPayload(payload *models.DlframeworkUserInfoResponse) {
o.Payload = payload
}
// WriteResponse to the client
func (o *UserInfoOK) 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
}
}
}