This repository has been archived by the owner on May 24, 2023. It is now read-only.
forked from go-swagger/go-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todos_client.go
146 lines (127 loc) · 4.19 KB
/
todos_client.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Code generated by go-swagger; DO NOT EDIT.
package todos
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/runtime"
strfmt "github.com/go-openapi/strfmt"
)
// New creates a new todos API client.
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client {
return &Client{transport: transport, formats: formats}
}
/*
Client for todos API
*/
type Client struct {
transport runtime.ClientTransport
formats strfmt.Registry
}
/*
AddOne add one API
*/
func (a *Client) AddOne(params *AddOneParams, authInfo runtime.ClientAuthInfoWriter) (*AddOneCreated, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewAddOneParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "addOne",
Method: "POST",
PathPattern: "/",
ProducesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
ConsumesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &AddOneReader{formats: a.formats},
AuthInfo: authInfo,
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*AddOneCreated), nil
}
/*
DestroyOne destroy one API
*/
func (a *Client) DestroyOne(params *DestroyOneParams, authInfo runtime.ClientAuthInfoWriter) (*DestroyOneNoContent, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewDestroyOneParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "destroyOne",
Method: "DELETE",
PathPattern: "/{id}",
ProducesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
ConsumesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &DestroyOneReader{formats: a.formats},
AuthInfo: authInfo,
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*DestroyOneNoContent), nil
}
/*
Find find API
*/
func (a *Client) Find(params *FindParams, authInfo runtime.ClientAuthInfoWriter) (*FindOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewFindParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "find",
Method: "GET",
PathPattern: "/",
ProducesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
ConsumesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &FindReader{formats: a.formats},
AuthInfo: authInfo,
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*FindOK), nil
}
/*
UpdateOne update one API
*/
func (a *Client) UpdateOne(params *UpdateOneParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateOneOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewUpdateOneParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "updateOne",
Method: "PUT",
PathPattern: "/{id}",
ProducesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
ConsumesMediaTypes: []string{"application/io.swagger.examples.todo-list.v1+json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &UpdateOneReader{formats: a.formats},
AuthInfo: authInfo,
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*UpdateOneOK), nil
}
// SetTransport changes the transport on the client
func (a *Client) SetTransport(transport runtime.ClientTransport) {
a.transport = transport
}