forked from rai-project/dlframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_agents_responses.go
58 lines (43 loc) · 1.37 KB
/
model_agents_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 registry
// 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"
)
// ModelAgentsOKCode is the HTTP code returned for type ModelAgentsOK
const ModelAgentsOKCode int = 200
/*ModelAgentsOK A successful response.
swagger:response modelAgentsOK
*/
type ModelAgentsOK struct {
/*
In: Body
*/
Payload *models.DlframeworkAgents `json:"body,omitempty"`
}
// NewModelAgentsOK creates ModelAgentsOK with default headers values
func NewModelAgentsOK() *ModelAgentsOK {
return &ModelAgentsOK{}
}
// WithPayload adds the payload to the model agents o k response
func (o *ModelAgentsOK) WithPayload(payload *models.DlframeworkAgents) *ModelAgentsOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the model agents o k response
func (o *ModelAgentsOK) SetPayload(payload *models.DlframeworkAgents) {
o.Payload = payload
}
// WriteResponse to the client
func (o *ModelAgentsOK) 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
}
}
}