4
4
5
5
from ..core .client_wrapper import AsyncClientWrapper , SyncClientWrapper
6
6
from ..core .request_options import RequestOptions
7
+ from ..types .proxy_response import ProxyResponse
7
8
from .raw_client import AsyncRawProxyClient , RawProxyClient
8
9
9
10
# this is used as the default value for optional parameters
@@ -32,7 +33,7 @@ def get(
32
33
external_user_id : str ,
33
34
account_id : str ,
34
35
request_options : typing .Optional [RequestOptions ] = None ,
35
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
36
+ ) -> ProxyResponse :
36
37
"""
37
38
Parameters
38
39
----------
@@ -50,7 +51,7 @@ def get(
50
51
51
52
Returns
52
53
-------
53
- typing.Dict[str, typing.Optional[typing.Any]]
54
+ ProxyResponse
54
55
proxy request successful
55
56
56
57
Examples
@@ -82,7 +83,7 @@ def post(
82
83
account_id : str ,
83
84
request : typing .Dict [str , typing .Optional [typing .Any ]],
84
85
request_options : typing .Optional [RequestOptions ] = None ,
85
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
86
+ ) -> ProxyResponse :
86
87
"""
87
88
Parameters
88
89
----------
@@ -102,7 +103,7 @@ def post(
102
103
103
104
Returns
104
105
-------
105
- typing.Dict[str, typing.Optional[typing.Any]]
106
+ ProxyResponse
106
107
proxy request successful
107
108
108
109
Examples
@@ -139,7 +140,7 @@ def put(
139
140
account_id : str ,
140
141
request : typing .Dict [str , typing .Optional [typing .Any ]],
141
142
request_options : typing .Optional [RequestOptions ] = None ,
142
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
143
+ ) -> ProxyResponse :
143
144
"""
144
145
Parameters
145
146
----------
@@ -159,7 +160,7 @@ def put(
159
160
160
161
Returns
161
162
-------
162
- typing.Dict[str, typing.Optional[typing.Any]]
163
+ ProxyResponse
163
164
proxy request successful
164
165
165
166
Examples
@@ -195,7 +196,7 @@ def delete(
195
196
external_user_id : str ,
196
197
account_id : str ,
197
198
request_options : typing .Optional [RequestOptions ] = None ,
198
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
199
+ ) -> ProxyResponse :
199
200
"""
200
201
Parameters
201
202
----------
@@ -213,7 +214,7 @@ def delete(
213
214
214
215
Returns
215
216
-------
216
- typing.Dict[str, typing.Optional[typing.Any]]
217
+ ProxyResponse
217
218
proxy request successful
218
219
219
220
Examples
@@ -245,7 +246,7 @@ def patch(
245
246
account_id : str ,
246
247
request : typing .Dict [str , typing .Optional [typing .Any ]],
247
248
request_options : typing .Optional [RequestOptions ] = None ,
248
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
249
+ ) -> ProxyResponse :
249
250
"""
250
251
Parameters
251
252
----------
@@ -265,7 +266,7 @@ def patch(
265
266
266
267
Returns
267
268
-------
268
- typing.Dict[str, typing.Optional[typing.Any]]
269
+ ProxyResponse
269
270
proxy request successful
270
271
271
272
Examples
@@ -317,7 +318,7 @@ async def get(
317
318
external_user_id : str ,
318
319
account_id : str ,
319
320
request_options : typing .Optional [RequestOptions ] = None ,
320
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
321
+ ) -> ProxyResponse :
321
322
"""
322
323
Parameters
323
324
----------
@@ -335,7 +336,7 @@ async def get(
335
336
336
337
Returns
337
338
-------
338
- typing.Dict[str, typing.Optional[typing.Any]]
339
+ ProxyResponse
339
340
proxy request successful
340
341
341
342
Examples
@@ -375,7 +376,7 @@ async def post(
375
376
account_id : str ,
376
377
request : typing .Dict [str , typing .Optional [typing .Any ]],
377
378
request_options : typing .Optional [RequestOptions ] = None ,
378
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
379
+ ) -> ProxyResponse :
379
380
"""
380
381
Parameters
381
382
----------
@@ -395,7 +396,7 @@ async def post(
395
396
396
397
Returns
397
398
-------
398
- typing.Dict[str, typing.Optional[typing.Any]]
399
+ ProxyResponse
399
400
proxy request successful
400
401
401
402
Examples
@@ -440,7 +441,7 @@ async def put(
440
441
account_id : str ,
441
442
request : typing .Dict [str , typing .Optional [typing .Any ]],
442
443
request_options : typing .Optional [RequestOptions ] = None ,
443
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
444
+ ) -> ProxyResponse :
444
445
"""
445
446
Parameters
446
447
----------
@@ -460,7 +461,7 @@ async def put(
460
461
461
462
Returns
462
463
-------
463
- typing.Dict[str, typing.Optional[typing.Any]]
464
+ ProxyResponse
464
465
proxy request successful
465
466
466
467
Examples
@@ -504,7 +505,7 @@ async def delete(
504
505
external_user_id : str ,
505
506
account_id : str ,
506
507
request_options : typing .Optional [RequestOptions ] = None ,
507
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
508
+ ) -> ProxyResponse :
508
509
"""
509
510
Parameters
510
511
----------
@@ -522,7 +523,7 @@ async def delete(
522
523
523
524
Returns
524
525
-------
525
- typing.Dict[str, typing.Optional[typing.Any]]
526
+ ProxyResponse
526
527
proxy request successful
527
528
528
529
Examples
@@ -562,7 +563,7 @@ async def patch(
562
563
account_id : str ,
563
564
request : typing .Dict [str , typing .Optional [typing .Any ]],
564
565
request_options : typing .Optional [RequestOptions ] = None ,
565
- ) -> typing . Dict [ str , typing . Optional [ typing . Any ]] :
566
+ ) -> ProxyResponse :
566
567
"""
567
568
Parameters
568
569
----------
@@ -582,7 +583,7 @@ async def patch(
582
583
583
584
Returns
584
585
-------
585
- typing.Dict[str, typing.Optional[typing.Any]]
586
+ ProxyResponse
586
587
proxy request successful
587
588
588
589
Examples
0 commit comments