@@ -105,7 +105,7 @@ def get(cls, api_context, user_id, monetary_account_id, invoice_id,
105
105
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
106
106
monetary_account_id ,
107
107
invoice_id )
108
- response_raw = api_client .get (endpoint_url , custom_headers )
108
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
109
109
110
110
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
111
111
@@ -325,7 +325,7 @@ def get(cls, api_context, user_id, invoice_by_user_id, custom_headers=None):
325
325
api_client = client .ApiClient (api_context )
326
326
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
327
327
invoice_by_user_id )
328
- response_raw = api_client .get (endpoint_url , custom_headers )
328
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
329
329
330
330
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
331
331
@@ -511,7 +511,7 @@ def get(cls, api_context, user_id, chat_conversation_id,
511
511
api_client = client .ApiClient (api_context )
512
512
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
513
513
chat_conversation_id )
514
- response_raw = api_client .get (endpoint_url , custom_headers )
514
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
515
515
516
516
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
517
517
@@ -1060,7 +1060,7 @@ def get(cls, api_context, attachment_public_uuid, custom_headers=None):
1060
1060
1061
1061
api_client = client .ApiClient (api_context )
1062
1062
endpoint_url = cls ._ENDPOINT_URL_READ .format (attachment_public_uuid )
1063
- response_raw = api_client .get (endpoint_url , custom_headers )
1063
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
1064
1064
1065
1065
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
1066
1066
@@ -1176,7 +1176,7 @@ def get(cls, api_context, user_id, monetary_account_id, attachment_tab_id,
1176
1176
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
1177
1177
monetary_account_id ,
1178
1178
attachment_tab_id )
1179
- response_raw = api_client .get (endpoint_url , custom_headers )
1179
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
1180
1180
1181
1181
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
1182
1182
@@ -1256,7 +1256,7 @@ def get(cls, api_context, tab_uuid, tab_attachment_tab_id,
1256
1256
api_client = client .ApiClient (api_context )
1257
1257
endpoint_url = cls ._ENDPOINT_URL_READ .format (tab_uuid ,
1258
1258
tab_attachment_tab_id )
1259
- response_raw = api_client .get (endpoint_url , custom_headers )
1259
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
1260
1260
1261
1261
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
1262
1262
@@ -1356,7 +1356,7 @@ def get(cls, api_context, avatar_uuid, custom_headers=None):
1356
1356
1357
1357
api_client = client .ApiClient (api_context )
1358
1358
endpoint_url = cls ._ENDPOINT_URL_READ .format (avatar_uuid )
1359
- response_raw = api_client .get (endpoint_url , custom_headers )
1359
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
1360
1360
1361
1361
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
1362
1362
@@ -1752,7 +1752,7 @@ def get(cls, api_context, user_id, card_id, custom_headers=None):
1752
1752
1753
1753
api_client = client .ApiClient (api_context )
1754
1754
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id , card_id )
1755
- response_raw = api_client .get (endpoint_url , custom_headers )
1755
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
1756
1756
1757
1757
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
1758
1758
@@ -2091,7 +2091,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
2091
2091
monetary_account_id ,
2092
2092
cash_register_id ,
2093
2093
cash_register_qr_code_id )
2094
- response_raw = api_client .get (endpoint_url , custom_headers )
2094
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
2095
2095
2096
2096
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
2097
2097
@@ -2272,7 +2272,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
2272
2272
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
2273
2273
monetary_account_id ,
2274
2274
cash_register_id )
2275
- response_raw = api_client .get (endpoint_url , custom_headers )
2275
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
2276
2276
2277
2277
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
2278
2278
@@ -2456,7 +2456,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
2456
2456
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
2457
2457
monetary_account_id ,
2458
2458
cash_register_id , tab_uuid )
2459
- response_raw = api_client .get (endpoint_url , custom_headers )
2459
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
2460
2460
2461
2461
return cls ._from_json (response_raw )
2462
2462
@@ -2707,7 +2707,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
2707
2707
monetary_account_id ,
2708
2708
cash_register_id ,
2709
2709
tab_usage_single_uuid )
2710
- response_raw = api_client .get (endpoint_url , custom_headers )
2710
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
2711
2711
2712
2712
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
2713
2713
@@ -3173,7 +3173,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
3173
3173
monetary_account_id ,
3174
3174
cash_register_id ,
3175
3175
tab_usage_multiple_uuid )
3176
- response_raw = api_client .get (endpoint_url , custom_headers )
3176
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
3177
3177
3178
3178
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
3179
3179
@@ -3463,7 +3463,7 @@ def get(cls, api_context, user_id, certificate_pinned_id,
3463
3463
api_client = client .ApiClient (api_context )
3464
3464
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
3465
3465
certificate_pinned_id )
3466
- response_raw = api_client .get (endpoint_url , custom_headers )
3466
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
3467
3467
3468
3468
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
3469
3469
@@ -3561,7 +3561,7 @@ def get(cls, api_context, device_server_id, custom_headers=None):
3561
3561
3562
3562
api_client = client .ApiClient (api_context )
3563
3563
endpoint_url = cls ._ENDPOINT_URL_READ .format (device_server_id )
3564
- response_raw = api_client .get (endpoint_url , custom_headers )
3564
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
3565
3565
3566
3566
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
3567
3567
@@ -3675,7 +3675,7 @@ def get(cls, api_context, device_id, custom_headers=None):
3675
3675
3676
3676
api_client = client .ApiClient (api_context )
3677
3677
endpoint_url = cls ._ENDPOINT_URL_READ .format (device_id )
3678
- response_raw = api_client .get (endpoint_url , custom_headers )
3678
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
3679
3679
3680
3680
return cls ._from_json (response_raw )
3681
3681
@@ -3954,7 +3954,7 @@ def get(cls, api_context, user_id, monetary_account_id, draft_payment_id,
3954
3954
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
3955
3955
monetary_account_id ,
3956
3956
draft_payment_id )
3957
- response_raw = api_client .get (endpoint_url , custom_headers )
3957
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
3958
3958
3959
3959
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
3960
3960
@@ -4149,7 +4149,7 @@ def get(cls, api_context, user_id, draft_share_invite_bank_id,
4149
4149
api_client = client .ApiClient (api_context )
4150
4150
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
4151
4151
draft_share_invite_bank_id )
4152
- response_raw = api_client .get (endpoint_url , custom_headers )
4152
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
4153
4153
4154
4154
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
4155
4155
@@ -4380,7 +4380,7 @@ def get(cls, api_context, user_id, export_annual_overview_id,
4380
4380
api_client = client .ApiClient (api_context )
4381
4381
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
4382
4382
export_annual_overview_id )
4383
- response_raw = api_client .get (endpoint_url , custom_headers )
4383
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
4384
4384
4385
4385
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
4386
4386
@@ -4584,7 +4584,7 @@ def get(cls, api_context, user_id, monetary_account_id,
4584
4584
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
4585
4585
monetary_account_id ,
4586
4586
customer_statement_export_id )
4587
- response_raw = api_client .get (endpoint_url , custom_headers )
4587
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
4588
4588
4589
4589
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
4590
4590
@@ -4921,7 +4921,7 @@ def get(cls, api_context, user_id, monetary_account_id,
4921
4921
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
4922
4922
monetary_account_id ,
4923
4923
share_invite_bank_inquiry_id )
4924
- response_raw = api_client .get (endpoint_url , custom_headers )
4924
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
4925
4925
4926
4926
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
4927
4927
@@ -5133,7 +5133,7 @@ def get(cls, api_context, user_id, share_invite_bank_response_id,
5133
5133
api_client = client .ApiClient (api_context )
5134
5134
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
5135
5135
share_invite_bank_response_id )
5136
- response_raw = api_client .get (endpoint_url , custom_headers )
5136
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
5137
5137
5138
5138
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
5139
5139
@@ -5384,7 +5384,7 @@ def get(cls, api_context, user_id, monetary_account_bank_id,
5384
5384
api_client = client .ApiClient (api_context )
5385
5385
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
5386
5386
monetary_account_bank_id )
5387
- response_raw = api_client .get (endpoint_url , custom_headers )
5387
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
5388
5388
5389
5389
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
5390
5390
@@ -5679,7 +5679,7 @@ def get(cls, api_context, user_id, monetary_account_id,
5679
5679
api_client = client .ApiClient (api_context )
5680
5680
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
5681
5681
monetary_account_id )
5682
- response_raw = api_client .get (endpoint_url , custom_headers )
5682
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
5683
5683
5684
5684
return cls ._from_json (response_raw )
5685
5685
@@ -5820,7 +5820,7 @@ def get(cls, api_context, user_id, monetary_account_id, payment_batch_id,
5820
5820
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
5821
5821
monetary_account_id ,
5822
5822
payment_batch_id )
5823
- response_raw = api_client .get (endpoint_url , custom_headers )
5823
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
5824
5824
5825
5825
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
5826
5826
@@ -5986,7 +5986,7 @@ def get(cls, api_context, user_id, monetary_account_id, payment_id,
5986
5986
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
5987
5987
monetary_account_id ,
5988
5988
payment_id )
5989
- response_raw = api_client .get (endpoint_url , custom_headers )
5989
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
5990
5990
5991
5991
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
5992
5992
@@ -6400,7 +6400,7 @@ def get(cls, api_context, user_id, credential_password_ip_id,
6400
6400
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
6401
6401
credential_password_ip_id ,
6402
6402
permitted_ip_id )
6403
- response_raw = api_client .get (endpoint_url , custom_headers )
6403
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
6404
6404
6405
6405
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
6406
6406
@@ -6607,7 +6607,7 @@ def get(cls, api_context, user_id, monetary_account_id,
6607
6607
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
6608
6608
monetary_account_id ,
6609
6609
request_inquiry_batch_id )
6610
- response_raw = api_client .get (endpoint_url , custom_headers )
6610
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
6611
6611
6612
6612
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
6613
6613
@@ -6849,7 +6849,7 @@ def get(cls, api_context, user_id, monetary_account_id, request_inquiry_id,
6849
6849
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
6850
6850
monetary_account_id ,
6851
6851
request_inquiry_id )
6852
- response_raw = api_client .get (endpoint_url , custom_headers )
6852
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
6853
6853
6854
6854
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
6855
6855
@@ -7524,7 +7524,7 @@ def get(cls, api_context, user_id, monetary_account_id, request_response_id,
7524
7524
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
7525
7525
monetary_account_id ,
7526
7526
request_response_id )
7527
- response_raw = api_client .get (endpoint_url , custom_headers )
7527
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
7528
7528
7529
7529
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
7530
7530
@@ -7785,7 +7785,7 @@ def get(cls, api_context, user_id, monetary_account_id, schedule_id,
7785
7785
monetary_account_id ,
7786
7786
schedule_id ,
7787
7787
schedule_instance_id )
7788
- response_raw = api_client .get (endpoint_url , custom_headers )
7788
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
7789
7789
7790
7790
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
7791
7791
@@ -8109,7 +8109,7 @@ def get(cls, api_context, user_id, monetary_account_id, schedule_payment_id,
8109
8109
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
8110
8110
monetary_account_id ,
8111
8111
schedule_payment_id )
8112
- response_raw = api_client .get (endpoint_url , custom_headers )
8112
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
8113
8113
8114
8114
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
8115
8115
@@ -8217,7 +8217,7 @@ def get(cls, api_context, user_id, monetary_account_id, schedule_id,
8217
8217
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
8218
8218
monetary_account_id ,
8219
8219
schedule_id )
8220
- response_raw = api_client .get (endpoint_url , custom_headers )
8220
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
8221
8221
8222
8222
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
8223
8223
@@ -8593,7 +8593,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
8593
8593
monetary_account_id ,
8594
8594
cash_register_id , tab_uuid ,
8595
8595
tab_item_shop_id )
8596
- response_raw = api_client .get (endpoint_url , custom_headers )
8596
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
8597
8597
8598
8598
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
8599
8599
@@ -8702,7 +8702,7 @@ def get(cls, api_context, user_id, monetary_account_id, cash_register_id,
8702
8702
monetary_account_id ,
8703
8703
cash_register_id , tab_uuid ,
8704
8704
tab_result_inquiry_id )
8705
- response_raw = api_client .get (endpoint_url , custom_headers )
8705
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
8706
8706
8707
8707
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
8708
8708
@@ -8798,7 +8798,7 @@ def get(cls, api_context, user_id, monetary_account_id,
8798
8798
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
8799
8799
monetary_account_id ,
8800
8800
tab_result_response_id )
8801
- response_raw = api_client .get (endpoint_url , custom_headers )
8801
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
8802
8802
8803
8803
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
8804
8804
@@ -9256,7 +9256,7 @@ def get(cls, api_context, user_company_id, custom_headers=None):
9256
9256
9257
9257
api_client = client .ApiClient (api_context )
9258
9258
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_company_id )
9259
- response_raw = api_client .get (endpoint_url , custom_headers )
9259
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
9260
9260
9261
9261
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
9262
9262
@@ -9584,7 +9584,7 @@ def get(cls, api_context, user_id, customer_id, custom_headers=None):
9584
9584
9585
9585
api_client = client .ApiClient (api_context )
9586
9586
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id , customer_id )
9587
- response_raw = api_client .get (endpoint_url , custom_headers )
9587
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
9588
9588
9589
9589
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
9590
9590
@@ -9899,7 +9899,7 @@ def get(cls, api_context, user_id, user_credential_password_ip_id,
9899
9899
api_client = client .ApiClient (api_context )
9900
9900
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id ,
9901
9901
user_credential_password_ip_id )
9902
- response_raw = api_client .get (endpoint_url , custom_headers )
9902
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
9903
9903
9904
9904
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
9905
9905
@@ -10108,7 +10108,7 @@ def get(cls, api_context, user_person_id, custom_headers=None):
10108
10108
10109
10109
api_client = client .ApiClient (api_context )
10110
10110
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_person_id )
10111
- response_raw = api_client .get (endpoint_url , custom_headers )
10111
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
10112
10112
10113
10113
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
10114
10114
@@ -10425,7 +10425,7 @@ def get(cls, api_context, user_id, custom_headers=None):
10425
10425
10426
10426
api_client = client .ApiClient (api_context )
10427
10427
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_id )
10428
- response_raw = api_client .get (endpoint_url , custom_headers )
10428
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
10429
10429
10430
10430
return cls ._from_json (response_raw )
10431
10431
@@ -10605,7 +10605,7 @@ def get(cls, api_context, user_light_id, custom_headers=None):
10605
10605
10606
10606
api_client = client .ApiClient (api_context )
10607
10607
endpoint_url = cls ._ENDPOINT_URL_READ .format (user_light_id )
10608
- response_raw = api_client .get (endpoint_url , custom_headers )
10608
+ response_raw = api_client .get (endpoint_url , {}, custom_headers )
10609
10609
10610
10610
return cls ._from_json (response_raw , cls ._OBJECT_TYPE )
10611
10611
0 commit comments