@@ -63,6 +63,7 @@ class OrdersApi(object):
63
63
"currency" ,
64
64
"amount" ,
65
65
"unit" ,
66
+ "issued_to" ,
66
67
]
67
68
68
69
def __init__ (self , api_client = None ):
@@ -160,6 +161,7 @@ def cancel_order_with_http_info(self, id, **kwargs): # noqa: E501
160
161
all_params .append ("currency" )
161
162
all_params .append ("amount" )
162
163
all_params .append ("unit" )
164
+ all_params .append ("issued_to" )
163
165
164
166
for key , val in six .iteritems (local_var_params ["kwargs" ]):
165
167
if key not in all_params :
@@ -320,6 +322,7 @@ def create_order_with_http_info(self, create_order_request, **kwargs): # noqa:
320
322
all_params .append ("currency" )
321
323
all_params .append ("amount" )
322
324
all_params .append ("unit" )
325
+ all_params .append ("issued_to" )
323
326
324
327
for key , val in six .iteritems (local_var_params ["kwargs" ]):
325
328
if key not in all_params :
@@ -407,6 +410,7 @@ def place_order(self, id={}, **kwargs): # noqa: E501
407
410
408
411
:param async_req bool: execute request asynchronously
409
412
:param str id: (required)
413
+ :param PlaceOrderRequest place_order_request:
410
414
:param _preload_content: if False, the urllib3.HTTPResponse object will
411
415
be returned without reading/decoding response
412
416
data. Default is True.
@@ -432,6 +436,7 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
432
436
433
437
:param async_req bool: execute request asynchronously
434
438
:param str id: (required)
439
+ :param PlaceOrderRequest place_order_request:
435
440
:param _return_http_data_only: response data without head status code
436
441
and headers
437
442
:param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -448,7 +453,7 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
448
453
449
454
local_var_params = locals ()
450
455
451
- all_params = ["id" ] # noqa: E501
456
+ all_params = ["id" , "place_order_request" ] # noqa: E501
452
457
all_params .append ("async_req" )
453
458
all_params .append ("_return_http_data_only" )
454
459
all_params .append ("_preload_content" )
@@ -488,6 +493,7 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
488
493
all_params .append ("currency" )
489
494
all_params .append ("amount" )
490
495
all_params .append ("unit" )
496
+ all_params .append ("issued_to" )
491
497
492
498
for key , val in six .iteritems (local_var_params ["kwargs" ]):
493
499
if key not in all_params :
@@ -526,11 +532,20 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
526
532
local_var_files = {}
527
533
528
534
body_params = None
535
+ if "place_order_request" in local_var_params :
536
+ body_params = local_var_params ["place_order_request" ]
529
537
# HTTP header `Accept`
530
538
header_params ["Accept" ] = self .api_client .select_header_accept (
531
539
["application/json" ]
532
540
) # noqa: E501
533
541
542
+ # HTTP header `Content-Type`
543
+ header_params [
544
+ "Content-Type"
545
+ ] = self .api_client .select_header_content_type ( # noqa: E501
546
+ ["application/json" ]
547
+ ) # noqa: E501
548
+
534
549
# Authentication setting
535
550
auth_settings = ["bearer_auth" ] # noqa: E501
536
551
@@ -646,6 +661,7 @@ def retrieve_order_with_http_info(self, id, **kwargs): # noqa: E501
646
661
all_params .append ("currency" )
647
662
all_params .append ("amount" )
648
663
all_params .append ("unit" )
664
+ all_params .append ("issued_to" )
649
665
650
666
for key , val in six .iteritems (local_var_params ["kwargs" ]):
651
667
if key not in all_params :
@@ -815,6 +831,7 @@ def retrieve_orders_with_http_info(self, **kwargs): # noqa: E501
815
831
all_params .append ("currency" )
816
832
all_params .append ("amount" )
817
833
all_params .append ("unit" )
834
+ all_params .append ("issued_to" )
818
835
819
836
for key , val in six .iteritems (local_var_params ["kwargs" ]):
820
837
if key not in all_params :
0 commit comments