-
Notifications
You must be signed in to change notification settings - Fork 4
/
files.gen
executable file
·252 lines (252 loc) · 9.53 KB
/
files.gen
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
cadillac.go
chevrolet.go
compatibility.go
evs.go
tesla.go
user.go
vehiclemanagement.go
vehicles.go
webhooks.go
smartcar.go
go.mod
go.sum
pkg/models/sdkerrors/sdkerror.go
pkg/types/bigint.go
pkg/types/date.go
pkg/types/datetime.go
pkg/types/decimal.go
pkg/types/pointers.go
pkg/utils/contenttype.go
pkg/utils/form.go
pkg/utils/headers.go
pkg/utils/json.go
pkg/utils/pathparams.go
pkg/utils/queryparams.go
pkg/utils/requestbody.go
pkg/utils/retries.go
pkg/utils/security.go
pkg/utils/utils.go
pkg/models/operations/getcadillacchargetime.go
pkg/models/operations/getcadillacvoltage.go
pkg/models/operations/getchevroletchargetime.go
pkg/models/operations/getchevroletvoltage.go
pkg/models/operations/listcompatibility.go
pkg/models/operations/getbatterycapacity.go
pkg/models/operations/getbatterylevel.go
pkg/models/operations/getcharginglimit.go
pkg/models/operations/getchargingstatus.go
pkg/models/operations/setcharginglimit.go
pkg/models/operations/startstopcharge.go
pkg/models/operations/getteslaammeter.go
pkg/models/operations/getteslachargetime.go
pkg/models/operations/getteslacompass.go
pkg/models/operations/getteslaexteriortemperature.go
pkg/models/operations/getteslainteriortemperature.go
pkg/models/operations/getteslaspeed.go
pkg/models/operations/getteslavoltage.go
pkg/models/operations/getteslawattmeter.go
pkg/models/operations/setteslaammeter.go
pkg/models/operations/getinfo.go
pkg/models/operations/deletemanagementvehicleconnections.go
pkg/models/operations/getmanagementvehicleconnections.go
pkg/models/operations/batch.go
pkg/models/operations/lockstatus.go
pkg/models/operations/disconnect.go
pkg/models/operations/getvehicle.go
pkg/models/operations/getengineoil.go
pkg/models/operations/getfueltank.go
pkg/models/operations/getlocation.go
pkg/models/operations/getodometer.go
pkg/models/operations/getpermissions.go
pkg/models/operations/gettirepressure.go
pkg/models/operations/getvin.go
pkg/models/operations/listvehicles.go
pkg/models/operations/lockunlock.go
pkg/models/operations/subscribe.go
pkg/models/operations/unsubscribe.go
pkg/models/shared/chargetime.go
pkg/models/shared/chargevoltage.go
pkg/models/shared/compatibilityresponse.go
pkg/models/shared/capability.go
pkg/models/shared/batterycapacity.go
pkg/models/shared/batterylevel.go
pkg/models/shared/chargelimit.go
pkg/models/shared/chargestatus.go
pkg/models/shared/successresponse.go
pkg/models/shared/chargeaction.go
pkg/models/shared/chargeammeter.go
pkg/models/shared/compass.go
pkg/models/shared/temperature.go
pkg/models/shared/speed.go
pkg/models/shared/chargewattage.go
pkg/models/shared/userinfo.go
pkg/models/shared/deletedconnection.go
pkg/models/shared/connectionsresponse.go
pkg/models/shared/cursorpaging.go
pkg/models/shared/getconnection.go
pkg/models/shared/batchresponse.go
pkg/models/shared/response.go
pkg/models/shared/header.go
pkg/models/shared/location.go
pkg/models/shared/odometer.go
pkg/models/shared/fueltank.go
pkg/models/shared/tirepressure.go
pkg/models/shared/engineoil.go
pkg/models/shared/vininfo.go
pkg/models/shared/securityread.go
pkg/models/shared/vehicleinfo.go
pkg/models/shared/permission.go
pkg/models/shared/vehiclesresponse.go
pkg/models/shared/securityaction.go
pkg/models/shared/webhookinfo.go
pkg/models/shared/security.go
USAGE.md
docs/models/operations/getcadillacchargetimerequest.md
docs/models/operations/getcadillacchargetimeresponse.md
docs/models/operations/getcadillacvoltagerequest.md
docs/models/operations/getcadillacvoltageresponse.md
docs/models/operations/getchevroletchargetimerequest.md
docs/models/operations/getchevroletchargetimeresponse.md
docs/models/operations/getchevroletvoltagerequest.md
docs/models/operations/getchevroletvoltageresponse.md
docs/models/operations/listcompatibilityrequest.md
docs/models/operations/listcompatibilityresponse.md
docs/models/operations/getbatterycapacityrequest.md
docs/models/operations/getbatterycapacityresponse.md
docs/models/operations/getbatterylevelrequest.md
docs/models/operations/getbatterylevelresponse.md
docs/models/operations/getcharginglimitrequest.md
docs/models/operations/getcharginglimitresponse.md
docs/models/operations/getchargingstatusrequest.md
docs/models/operations/getchargingstatusresponse.md
docs/models/operations/setcharginglimitrequest.md
docs/models/operations/setcharginglimitresponse.md
docs/models/operations/startstopchargerequest.md
docs/models/operations/startstopchargeresponse.md
docs/models/operations/getteslaammeterrequest.md
docs/models/operations/getteslaammeterresponse.md
docs/models/operations/getteslachargetimerequest.md
docs/models/operations/getteslachargetimeresponse.md
docs/models/operations/getteslacompassrequest.md
docs/models/operations/getteslacompassresponse.md
docs/models/operations/getteslaexteriortemperaturerequest.md
docs/models/operations/getteslaexteriortemperatureresponse.md
docs/models/operations/getteslainteriortemperaturerequest.md
docs/models/operations/getteslainteriortemperatureresponse.md
docs/models/operations/getteslaspeedrequest.md
docs/models/operations/getteslaspeedresponse.md
docs/models/operations/getteslavoltagerequest.md
docs/models/operations/getteslavoltageresponse.md
docs/models/operations/getteslawattmeterrequest.md
docs/models/operations/getteslawattmeterresponse.md
docs/models/operations/setteslaammeterrequest.md
docs/models/operations/setteslaammeterresponse.md
docs/models/operations/getinforesponse.md
docs/models/operations/deletemanagementvehicleconnectionssecurity.md
docs/models/operations/deletemanagementvehicleconnectionsrequest.md
docs/models/operations/deletemanagementvehicleconnectionsresponse.md
docs/models/operations/getmanagementvehicleconnectionssecurity.md
docs/models/operations/getmanagementvehicleconnectionsrequest.md
docs/models/operations/getmanagementvehicleconnectionsresponse.md
docs/models/operations/batchrequest.md
docs/models/operations/batchresponse.md
docs/models/operations/lockstatusrequest.md
docs/models/operations/lockstatusresponse.md
docs/models/operations/disconnectrequest.md
docs/models/operations/disconnectresponse.md
docs/models/operations/getvehiclerequest.md
docs/models/operations/getvehicleresponse.md
docs/models/operations/getengineoilrequest.md
docs/models/operations/getengineoilresponse.md
docs/models/operations/getfueltankrequest.md
docs/models/operations/getfueltankresponse.md
docs/models/operations/getlocationrequest.md
docs/models/operations/getlocationresponse.md
docs/models/operations/getodometerrequest.md
docs/models/operations/getodometerresponse.md
docs/models/operations/getpermissionsrequest.md
docs/models/operations/getpermissionsresponse.md
docs/models/operations/gettirepressurerequest.md
docs/models/operations/gettirepressureresponse.md
docs/models/operations/getvinrequest.md
docs/models/operations/getvinresponse.md
docs/models/operations/listvehiclesrequest.md
docs/models/operations/listvehiclesresponse.md
docs/models/operations/lockunlockrequest.md
docs/models/operations/lockunlockresponse.md
docs/models/operations/subscriberequest.md
docs/models/operations/subscriberesponse.md
docs/models/operations/unsubscriberequest.md
docs/models/operations/unsubscriberesponse.md
docs/models/shared/chargetime.md
docs/models/shared/chargevoltage.md
docs/models/shared/compatibilityresponse.md
docs/models/shared/capability.md
docs/models/shared/batterycapacity.md
docs/models/shared/batterylevel.md
docs/models/shared/chargelimit.md
docs/models/shared/chargestatusstate.md
docs/models/shared/chargestatus.md
docs/models/shared/successresponsestatus.md
docs/models/shared/successresponse.md
docs/models/shared/chargeactionaction.md
docs/models/shared/chargeaction.md
docs/models/shared/chargeammeter.md
docs/models/shared/compassdirection.md
docs/models/shared/compass.md
docs/models/shared/temperature.md
docs/models/shared/speed.md
docs/models/shared/chargewattage.md
docs/models/shared/userinfo.md
docs/models/shared/deletedconnection.md
docs/models/shared/connectionsresponse.md
docs/models/shared/cursorpaging.md
docs/models/shared/getconnection.md
docs/models/shared/batchresponse.md
docs/models/shared/responsebody.md
docs/models/shared/responsecode.md
docs/models/shared/response.md
docs/models/shared/header.md
docs/models/shared/location.md
docs/models/shared/odometer.md
docs/models/shared/fueltank.md
docs/models/shared/tirepressure.md
docs/models/shared/engineoil.md
docs/models/shared/vininfo.md
docs/models/shared/securityreadchargingportstatus.md
docs/models/shared/securityreadchargingport.md
docs/models/shared/securityreaddoorsstatus.md
docs/models/shared/securityreaddoorstype.md
docs/models/shared/securityreaddoors.md
docs/models/shared/securityreadstoragestatus.md
docs/models/shared/securityreadstoragetype.md
docs/models/shared/securityreadstorage.md
docs/models/shared/securityreadsunroofstatus.md
docs/models/shared/securityreadsunroof.md
docs/models/shared/securityreadwindowsstatus.md
docs/models/shared/securityreadwindowstype.md
docs/models/shared/securityreadwindows.md
docs/models/shared/securityread.md
docs/models/shared/vehicleinfo.md
docs/models/shared/permissionpaging.md
docs/models/shared/permission.md
docs/models/shared/vehiclesresponsepaging.md
docs/models/shared/vehiclesresponse.md
docs/models/shared/securityactionaction.md
docs/models/shared/securityaction.md
docs/models/shared/webhookinfo.md
docs/models/shared/schemebasicauth.md
docs/models/shared/security.md
docs/sdks/smartcar/README.md
docs/sdks/cadillac/README.md
docs/sdks/chevrolet/README.md
docs/sdks/compatibility/README.md
docs/sdks/evs/README.md
docs/sdks/tesla/README.md
docs/sdks/user/README.md
docs/models/operations/option.md
docs/sdks/vehiclemanagement/README.md
docs/sdks/vehicles/README.md
docs/sdks/webhooks/README.md
pkg/models/operations/options.go
.gitattributes