@@ -13,40 +13,145 @@ import (
13
13
)
14
14
15
15
type VisAdminClient interface {
16
+ GetClientsMethod
17
+ DeleteClientMethod
18
+ GetClientMethod
19
+ CreateOrUpdateClientMethod
20
+ GetViewsSetsMethod
21
+ DeleteViewsSetMethod
22
+ GetViewsSetMethod
23
+ ActivateViewsSetMethod
24
+ CreateOrUpdateViewsSetMethod
25
+ ShowVehicleInViewMethod
26
+ GetPermissionsMethod
27
+ DestroySessionMethod
28
+ GetUserInfoMethod
29
+ CreateSessionMethod
30
+ GetUsersMethod
31
+ DeleteUserMethod
32
+ GetUserMethod
33
+ CreateOrUpdateUserMethod
34
+ GetBookingMethod
35
+ GetBookingsMethod
36
+ ListModelsMethod
37
+ GetClassesMethod
38
+ CodeMethod
39
+ DeleteCustomerSessionMethod
40
+ CreateCustomerSessionMethod
41
+ DownloadNestedFileMethod
42
+ DownloadImageMethod
43
+ ListElementsMethod
44
+ FileUploadMethod
45
+ DownloadFileMethod
46
+ FindByTagsMethod
47
+ GenericFileDownloadMethod
48
+ GetRentalMethod
49
+ GetShoesMethod
50
+ PostUploadMethod
51
+ }
52
+ type GetClientsMethod interface {
16
53
GetClients (request * GetClientsRequest ) (GetClientsResponse , error )
54
+ }
55
+ type DeleteClientMethod interface {
17
56
DeleteClient (request * DeleteClientRequest ) (DeleteClientResponse , error )
57
+ }
58
+ type GetClientMethod interface {
18
59
GetClient (request * GetClientRequest ) (GetClientResponse , error )
60
+ }
61
+ type CreateOrUpdateClientMethod interface {
19
62
CreateOrUpdateClient (request * CreateOrUpdateClientRequest ) (CreateOrUpdateClientResponse , error )
63
+ }
64
+ type GetViewsSetsMethod interface {
20
65
GetViewsSets (request * GetViewsSetsRequest ) (GetViewsSetsResponse , error )
66
+ }
67
+ type DeleteViewsSetMethod interface {
21
68
DeleteViewsSet (request * DeleteViewsSetRequest ) (DeleteViewsSetResponse , error )
69
+ }
70
+ type GetViewsSetMethod interface {
22
71
GetViewsSet (request * GetViewsSetRequest ) (GetViewsSetResponse , error )
72
+ }
73
+ type ActivateViewsSetMethod interface {
23
74
ActivateViewsSet (request * ActivateViewsSetRequest ) (ActivateViewsSetResponse , error )
75
+ }
76
+ type CreateOrUpdateViewsSetMethod interface {
24
77
CreateOrUpdateViewsSet (request * CreateOrUpdateViewsSetRequest ) (CreateOrUpdateViewsSetResponse , error )
78
+ }
79
+ type ShowVehicleInViewMethod interface {
25
80
ShowVehicleInView (request * ShowVehicleInViewRequest ) (ShowVehicleInViewResponse , error )
81
+ }
82
+ type GetPermissionsMethod interface {
26
83
GetPermissions (request * GetPermissionsRequest ) (GetPermissionsResponse , error )
84
+ }
85
+ type DestroySessionMethod interface {
27
86
DestroySession (request * DestroySessionRequest ) (DestroySessionResponse , error )
87
+ }
88
+ type GetUserInfoMethod interface {
28
89
GetUserInfo (request * GetUserInfoRequest ) (GetUserInfoResponse , error )
90
+ }
91
+ type CreateSessionMethod interface {
29
92
CreateSession (request * CreateSessionRequest ) (CreateSessionResponse , error )
93
+ }
94
+ type GetUsersMethod interface {
30
95
GetUsers (request * GetUsersRequest ) (GetUsersResponse , error )
96
+ }
97
+ type DeleteUserMethod interface {
31
98
DeleteUser (request * DeleteUserRequest ) (DeleteUserResponse , error )
99
+ }
100
+ type GetUserMethod interface {
32
101
GetUser (request * GetUserRequest ) (GetUserResponse , error )
102
+ }
103
+ type CreateOrUpdateUserMethod interface {
33
104
CreateOrUpdateUser (request * CreateOrUpdateUserRequest ) (CreateOrUpdateUserResponse , error )
105
+ }
106
+ type GetBookingMethod interface {
34
107
GetBooking (request * GetBookingRequest ) (GetBookingResponse , error )
108
+ }
109
+ type GetBookingsMethod interface {
35
110
GetBookings (request * GetBookingsRequest ) (GetBookingsResponse , error )
111
+ }
112
+ type ListModelsMethod interface {
36
113
ListModels (request * ListModelsRequest ) (ListModelsResponse , error )
114
+ }
115
+ type GetClassesMethod interface {
37
116
GetClasses (request * GetClassesRequest ) (GetClassesResponse , error )
117
+ }
118
+ type CodeMethod interface {
38
119
Code (request * CodeRequest ) (CodeResponse , error )
120
+ }
121
+ type DeleteCustomerSessionMethod interface {
39
122
DeleteCustomerSession (request * DeleteCustomerSessionRequest ) (DeleteCustomerSessionResponse , error )
123
+ }
124
+ type CreateCustomerSessionMethod interface {
40
125
CreateCustomerSession (request * CreateCustomerSessionRequest ) (CreateCustomerSessionResponse , error )
126
+ }
127
+ type DownloadNestedFileMethod interface {
41
128
DownloadNestedFile (request * DownloadNestedFileRequest ) (DownloadNestedFileResponse , error )
129
+ }
130
+ type DownloadImageMethod interface {
42
131
DownloadImage (request * DownloadImageRequest ) (DownloadImageResponse , error )
132
+ }
133
+ type ListElementsMethod interface {
43
134
ListElements (request * ListElementsRequest ) (ListElementsResponse , error )
135
+ }
136
+ type FileUploadMethod interface {
44
137
FileUpload (request * FileUploadRequest ) (FileUploadResponse , error )
138
+ }
139
+ type DownloadFileMethod interface {
45
140
DownloadFile (request * DownloadFileRequest ) (DownloadFileResponse , error )
141
+ }
142
+ type FindByTagsMethod interface {
46
143
FindByTags (request * FindByTagsRequest ) (FindByTagsResponse , error )
144
+ }
145
+ type GenericFileDownloadMethod interface {
47
146
GenericFileDownload (request * GenericFileDownloadRequest ) (GenericFileDownloadResponse , error )
147
+ }
148
+ type GetRentalMethod interface {
48
149
GetRental (request * GetRentalRequest ) (GetRentalResponse , error )
150
+ }
151
+ type GetShoesMethod interface {
49
152
GetShoes (request * GetShoesRequest ) (GetShoesResponse , error )
153
+ }
154
+ type PostUploadMethod interface {
50
155
PostUpload (request * PostUploadRequest ) (PostUploadResponse , error )
51
156
}
52
157
0 commit comments