pluggy-sdk 1.0.0.post14__py3-none-any.whl → 1.0.0.post16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pluggy_sdk/__init__.py +4 -1
- pluggy_sdk/api/__init__.py +3 -0
- pluggy_sdk/api/account_api.py +12 -10
- pluggy_sdk/api/acquirer_anticipation_api.py +12 -10
- pluggy_sdk/api/acquirer_receivable_api.py +12 -10
- pluggy_sdk/api/acquirer_sale_api.py +12 -10
- pluggy_sdk/api/auth_api.py +12 -10
- pluggy_sdk/api/benefit_api.py +12 -10
- pluggy_sdk/api/bill_api.py +12 -10
- pluggy_sdk/api/bulk_payment_api.py +18 -15
- pluggy_sdk/api/category_api.py +24 -20
- pluggy_sdk/api/connector_api.py +18 -15
- pluggy_sdk/api/consent_api.py +12 -10
- pluggy_sdk/api/identity_api.py +12 -10
- pluggy_sdk/api/income_report_api.py +6 -5
- pluggy_sdk/api/investment_api.py +18 -15
- pluggy_sdk/api/items_api.py +30 -25
- pluggy_sdk/api/loan_api.py +12 -10
- pluggy_sdk/api/payment_customer_api.py +30 -25
- pluggy_sdk/api/payment_intent_api.py +18 -15
- pluggy_sdk/api/payment_receipts_api.py +842 -0
- pluggy_sdk/api/payment_recipient_api.py +42 -35
- pluggy_sdk/api/payment_request_api.py +134 -1187
- pluggy_sdk/api/payment_schedule_api.py +817 -0
- pluggy_sdk/api/portfolio_yield_api.py +12 -10
- pluggy_sdk/api/smart_account_api.py +24 -590
- pluggy_sdk/api/smart_account_transfer_api.py +610 -0
- pluggy_sdk/api/transaction_api.py +18 -15
- pluggy_sdk/api/webhook_api.py +30 -25
- pluggy_sdk/api_client.py +2 -2
- pluggy_sdk/configuration.py +17 -3
- pluggy_sdk/models/benefit_loan.py +6 -6
- pluggy_sdk/models/benefit_loan_client.py +3 -3
- pluggy_sdk/models/connector.py +6 -2
- pluggy_sdk/models/item.py +3 -1
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/METADATA +11 -9
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/RECORD +39 -36
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.0.0.
|
18
|
+
__version__ = "1.0.0.post16"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from pluggy_sdk.api.account_api import AccountApi
|
@@ -36,9 +36,12 @@ from pluggy_sdk.api.items_api import ItemsApi
|
|
36
36
|
from pluggy_sdk.api.loan_api import LoanApi
|
37
37
|
from pluggy_sdk.api.payment_customer_api import PaymentCustomerApi
|
38
38
|
from pluggy_sdk.api.payment_intent_api import PaymentIntentApi
|
39
|
+
from pluggy_sdk.api.payment_receipts_api import PaymentReceiptsApi
|
39
40
|
from pluggy_sdk.api.payment_recipient_api import PaymentRecipientApi
|
40
41
|
from pluggy_sdk.api.payment_request_api import PaymentRequestApi
|
42
|
+
from pluggy_sdk.api.payment_schedule_api import PaymentScheduleApi
|
41
43
|
from pluggy_sdk.api.portfolio_yield_api import PortfolioYieldApi
|
44
|
+
from pluggy_sdk.api.smart_account_transfer_api import SmartAccountTransferApi
|
42
45
|
from pluggy_sdk.api.smart_account_api import SmartAccountApi
|
43
46
|
from pluggy_sdk.api.transaction_api import TransactionApi
|
44
47
|
from pluggy_sdk.api.webhook_api import WebhookApi
|
pluggy_sdk/api/__init__.py
CHANGED
@@ -19,9 +19,12 @@ from pluggy_sdk.api.items_api import ItemsApi
|
|
19
19
|
from pluggy_sdk.api.loan_api import LoanApi
|
20
20
|
from pluggy_sdk.api.payment_customer_api import PaymentCustomerApi
|
21
21
|
from pluggy_sdk.api.payment_intent_api import PaymentIntentApi
|
22
|
+
from pluggy_sdk.api.payment_receipts_api import PaymentReceiptsApi
|
22
23
|
from pluggy_sdk.api.payment_recipient_api import PaymentRecipientApi
|
23
24
|
from pluggy_sdk.api.payment_request_api import PaymentRequestApi
|
25
|
+
from pluggy_sdk.api.payment_schedule_api import PaymentScheduleApi
|
24
26
|
from pluggy_sdk.api.portfolio_yield_api import PortfolioYieldApi
|
27
|
+
from pluggy_sdk.api.smart_account_transfer_api import SmartAccountTransferApi
|
25
28
|
from pluggy_sdk.api.smart_account_api import SmartAccountApi
|
26
29
|
from pluggy_sdk.api.transaction_api import TransactionApi
|
27
30
|
from pluggy_sdk.api.webhook_api import WebhookApi
|
pluggy_sdk/api/account_api.py
CHANGED
@@ -288,11 +288,12 @@ class AccountApi:
|
|
288
288
|
|
289
289
|
|
290
290
|
# set the HTTP header `Accept`
|
291
|
-
|
292
|
-
[
|
293
|
-
|
294
|
-
|
295
|
-
|
291
|
+
if 'Accept' not in _header_params:
|
292
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
293
|
+
[
|
294
|
+
'application/json'
|
295
|
+
]
|
296
|
+
)
|
296
297
|
|
297
298
|
|
298
299
|
# authentication setting
|
@@ -552,11 +553,12 @@ class AccountApi:
|
|
552
553
|
|
553
554
|
|
554
555
|
# set the HTTP header `Accept`
|
555
|
-
|
556
|
-
[
|
557
|
-
|
558
|
-
|
559
|
-
|
556
|
+
if 'Accept' not in _header_params:
|
557
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
558
|
+
[
|
559
|
+
'application/json'
|
560
|
+
]
|
561
|
+
)
|
560
562
|
|
561
563
|
|
562
564
|
# authentication setting
|
@@ -276,11 +276,12 @@ class AcquirerAnticipationApi:
|
|
276
276
|
|
277
277
|
|
278
278
|
# set the HTTP header `Accept`
|
279
|
-
|
280
|
-
[
|
281
|
-
|
282
|
-
|
283
|
-
|
279
|
+
if 'Accept' not in _header_params:
|
280
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
281
|
+
[
|
282
|
+
'application/json'
|
283
|
+
]
|
284
|
+
)
|
284
285
|
|
285
286
|
|
286
287
|
# authentication setting
|
@@ -628,11 +629,12 @@ class AcquirerAnticipationApi:
|
|
628
629
|
|
629
630
|
|
630
631
|
# set the HTTP header `Accept`
|
631
|
-
|
632
|
-
[
|
633
|
-
|
634
|
-
|
635
|
-
|
632
|
+
if 'Accept' not in _header_params:
|
633
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
634
|
+
[
|
635
|
+
'application/json'
|
636
|
+
]
|
637
|
+
)
|
636
638
|
|
637
639
|
|
638
640
|
# authentication setting
|
@@ -276,11 +276,12 @@ class AcquirerReceivableApi:
|
|
276
276
|
|
277
277
|
|
278
278
|
# set the HTTP header `Accept`
|
279
|
-
|
280
|
-
[
|
281
|
-
|
282
|
-
|
283
|
-
|
279
|
+
if 'Accept' not in _header_params:
|
280
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
281
|
+
[
|
282
|
+
'application/json'
|
283
|
+
]
|
284
|
+
)
|
284
285
|
|
285
286
|
|
286
287
|
# authentication setting
|
@@ -628,11 +629,12 @@ class AcquirerReceivableApi:
|
|
628
629
|
|
629
630
|
|
630
631
|
# set the HTTP header `Accept`
|
631
|
-
|
632
|
-
[
|
633
|
-
|
634
|
-
|
635
|
-
|
632
|
+
if 'Accept' not in _header_params:
|
633
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
634
|
+
[
|
635
|
+
'application/json'
|
636
|
+
]
|
637
|
+
)
|
636
638
|
|
637
639
|
|
638
640
|
# authentication setting
|
@@ -364,11 +364,12 @@ class AcquirerSaleApi:
|
|
364
364
|
|
365
365
|
|
366
366
|
# set the HTTP header `Accept`
|
367
|
-
|
368
|
-
[
|
369
|
-
|
370
|
-
|
371
|
-
|
367
|
+
if 'Accept' not in _header_params:
|
368
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
369
|
+
[
|
370
|
+
'application/json'
|
371
|
+
]
|
372
|
+
)
|
372
373
|
|
373
374
|
|
374
375
|
# authentication setting
|
@@ -628,11 +629,12 @@ class AcquirerSaleApi:
|
|
628
629
|
|
629
630
|
|
630
631
|
# set the HTTP header `Accept`
|
631
|
-
|
632
|
-
[
|
633
|
-
|
634
|
-
|
635
|
-
|
632
|
+
if 'Accept' not in _header_params:
|
633
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
634
|
+
[
|
635
|
+
'application/json'
|
636
|
+
]
|
637
|
+
)
|
636
638
|
|
637
639
|
|
638
640
|
# authentication setting
|
pluggy_sdk/api/auth_api.py
CHANGED
@@ -277,11 +277,12 @@ class AuthApi:
|
|
277
277
|
|
278
278
|
|
279
279
|
# set the HTTP header `Accept`
|
280
|
-
|
281
|
-
[
|
282
|
-
|
283
|
-
|
284
|
-
|
280
|
+
if 'Accept' not in _header_params:
|
281
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
282
|
+
[
|
283
|
+
'application/json'
|
284
|
+
]
|
285
|
+
)
|
285
286
|
|
286
287
|
# set the HTTP header `Content-Type`
|
287
288
|
if _content_type:
|
@@ -556,11 +557,12 @@ class AuthApi:
|
|
556
557
|
|
557
558
|
|
558
559
|
# set the HTTP header `Accept`
|
559
|
-
|
560
|
-
[
|
561
|
-
|
562
|
-
|
563
|
-
|
560
|
+
if 'Accept' not in _header_params:
|
561
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
562
|
+
[
|
563
|
+
'application/json'
|
564
|
+
]
|
565
|
+
)
|
564
566
|
|
565
567
|
# set the HTTP header `Content-Type`
|
566
568
|
if _content_type:
|
pluggy_sdk/api/benefit_api.py
CHANGED
@@ -271,11 +271,12 @@ class BenefitApi:
|
|
271
271
|
|
272
272
|
|
273
273
|
# set the HTTP header `Accept`
|
274
|
-
|
275
|
-
[
|
276
|
-
|
277
|
-
|
278
|
-
|
274
|
+
if 'Accept' not in _header_params:
|
275
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
276
|
+
[
|
277
|
+
'application/json'
|
278
|
+
]
|
279
|
+
)
|
279
280
|
|
280
281
|
|
281
282
|
# authentication setting
|
@@ -531,11 +532,12 @@ class BenefitApi:
|
|
531
532
|
|
532
533
|
|
533
534
|
# set the HTTP header `Accept`
|
534
|
-
|
535
|
-
[
|
536
|
-
|
537
|
-
|
538
|
-
|
535
|
+
if 'Accept' not in _header_params:
|
536
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
537
|
+
[
|
538
|
+
'application/json'
|
539
|
+
]
|
540
|
+
)
|
539
541
|
|
540
542
|
|
541
543
|
# authentication setting
|
pluggy_sdk/api/bill_api.py
CHANGED
@@ -270,11 +270,12 @@ class BillApi:
|
|
270
270
|
|
271
271
|
|
272
272
|
# set the HTTP header `Accept`
|
273
|
-
|
274
|
-
[
|
275
|
-
|
276
|
-
|
277
|
-
|
273
|
+
if 'Accept' not in _header_params:
|
274
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
275
|
+
[
|
276
|
+
'application/json'
|
277
|
+
]
|
278
|
+
)
|
278
279
|
|
279
280
|
|
280
281
|
# authentication setting
|
@@ -531,11 +532,12 @@ class BillApi:
|
|
531
532
|
|
532
533
|
|
533
534
|
# set the HTTP header `Accept`
|
534
|
-
|
535
|
-
[
|
536
|
-
|
537
|
-
|
538
|
-
|
535
|
+
if 'Accept' not in _header_params:
|
536
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
537
|
+
[
|
538
|
+
'application/json'
|
539
|
+
]
|
540
|
+
)
|
539
541
|
|
540
542
|
|
541
543
|
# authentication setting
|
@@ -273,11 +273,12 @@ class BulkPaymentApi:
|
|
273
273
|
|
274
274
|
|
275
275
|
# set the HTTP header `Accept`
|
276
|
-
|
277
|
-
[
|
278
|
-
|
279
|
-
|
280
|
-
|
276
|
+
if 'Accept' not in _header_params:
|
277
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
278
|
+
[
|
279
|
+
'application/json'
|
280
|
+
]
|
281
|
+
)
|
281
282
|
|
282
283
|
# set the HTTP header `Content-Type`
|
283
284
|
if _content_type:
|
@@ -547,11 +548,12 @@ class BulkPaymentApi:
|
|
547
548
|
|
548
549
|
|
549
550
|
# set the HTTP header `Accept`
|
550
|
-
|
551
|
-
[
|
552
|
-
|
553
|
-
|
554
|
-
|
551
|
+
if 'Accept' not in _header_params:
|
552
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
553
|
+
[
|
554
|
+
'application/json'
|
555
|
+
]
|
556
|
+
)
|
555
557
|
|
556
558
|
|
557
559
|
# authentication setting
|
@@ -824,11 +826,12 @@ class BulkPaymentApi:
|
|
824
826
|
|
825
827
|
|
826
828
|
# set the HTTP header `Accept`
|
827
|
-
|
828
|
-
[
|
829
|
-
|
830
|
-
|
831
|
-
|
829
|
+
if 'Accept' not in _header_params:
|
830
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
831
|
+
[
|
832
|
+
'application/json'
|
833
|
+
]
|
834
|
+
)
|
832
835
|
|
833
836
|
|
834
837
|
# authentication setting
|
pluggy_sdk/api/category_api.py
CHANGED
@@ -273,11 +273,12 @@ class CategoryApi:
|
|
273
273
|
|
274
274
|
|
275
275
|
# set the HTTP header `Accept`
|
276
|
-
|
277
|
-
[
|
278
|
-
|
279
|
-
|
280
|
-
|
276
|
+
if 'Accept' not in _header_params:
|
277
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
278
|
+
[
|
279
|
+
'application/json'
|
280
|
+
]
|
281
|
+
)
|
281
282
|
|
282
283
|
|
283
284
|
# authentication setting
|
@@ -534,11 +535,12 @@ class CategoryApi:
|
|
534
535
|
|
535
536
|
|
536
537
|
# set the HTTP header `Accept`
|
537
|
-
|
538
|
-
[
|
539
|
-
|
540
|
-
|
541
|
-
|
538
|
+
if 'Accept' not in _header_params:
|
539
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
540
|
+
[
|
541
|
+
'application/json'
|
542
|
+
]
|
543
|
+
)
|
542
544
|
|
543
545
|
|
544
546
|
# authentication setting
|
@@ -798,11 +800,12 @@ class CategoryApi:
|
|
798
800
|
|
799
801
|
|
800
802
|
# set the HTTP header `Accept`
|
801
|
-
|
802
|
-
[
|
803
|
-
|
804
|
-
|
805
|
-
|
803
|
+
if 'Accept' not in _header_params:
|
804
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
805
|
+
[
|
806
|
+
'application/json'
|
807
|
+
]
|
808
|
+
)
|
806
809
|
|
807
810
|
# set the HTTP header `Content-Type`
|
808
811
|
if _content_type:
|
@@ -1054,11 +1057,12 @@ class CategoryApi:
|
|
1054
1057
|
|
1055
1058
|
|
1056
1059
|
# set the HTTP header `Accept`
|
1057
|
-
|
1058
|
-
[
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1060
|
+
if 'Accept' not in _header_params:
|
1061
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1062
|
+
[
|
1063
|
+
'application/json'
|
1064
|
+
]
|
1065
|
+
)
|
1062
1066
|
|
1063
1067
|
|
1064
1068
|
# authentication setting
|
pluggy_sdk/api/connector_api.py
CHANGED
@@ -290,11 +290,12 @@ class ConnectorApi:
|
|
290
290
|
|
291
291
|
|
292
292
|
# set the HTTP header `Accept`
|
293
|
-
|
294
|
-
[
|
295
|
-
|
296
|
-
|
297
|
-
|
293
|
+
if 'Accept' not in _header_params:
|
294
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
295
|
+
[
|
296
|
+
'application/json'
|
297
|
+
]
|
298
|
+
)
|
298
299
|
|
299
300
|
|
300
301
|
# authentication setting
|
@@ -654,11 +655,12 @@ class ConnectorApi:
|
|
654
655
|
|
655
656
|
|
656
657
|
# set the HTTP header `Accept`
|
657
|
-
|
658
|
-
[
|
659
|
-
|
660
|
-
|
661
|
-
|
658
|
+
if 'Accept' not in _header_params:
|
659
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
660
|
+
[
|
661
|
+
'application/json'
|
662
|
+
]
|
663
|
+
)
|
662
664
|
|
663
665
|
|
664
666
|
# authentication setting
|
@@ -927,11 +929,12 @@ class ConnectorApi:
|
|
927
929
|
|
928
930
|
|
929
931
|
# set the HTTP header `Accept`
|
930
|
-
|
931
|
-
[
|
932
|
-
|
933
|
-
|
934
|
-
|
932
|
+
if 'Accept' not in _header_params:
|
933
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
934
|
+
[
|
935
|
+
'application/json'
|
936
|
+
]
|
937
|
+
)
|
935
938
|
|
936
939
|
# set the HTTP header `Content-Type`
|
937
940
|
if _content_type:
|
pluggy_sdk/api/consent_api.py
CHANGED
@@ -274,11 +274,12 @@ class ConsentApi:
|
|
274
274
|
|
275
275
|
|
276
276
|
# set the HTTP header `Accept`
|
277
|
-
|
278
|
-
[
|
279
|
-
|
280
|
-
|
281
|
-
|
277
|
+
if 'Accept' not in _header_params:
|
278
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
279
|
+
[
|
280
|
+
'application/json'
|
281
|
+
]
|
282
|
+
)
|
282
283
|
|
283
284
|
|
284
285
|
# authentication setting
|
@@ -540,11 +541,12 @@ class ConsentApi:
|
|
540
541
|
|
541
542
|
|
542
543
|
# set the HTTP header `Accept`
|
543
|
-
|
544
|
-
[
|
545
|
-
|
546
|
-
|
547
|
-
|
544
|
+
if 'Accept' not in _header_params:
|
545
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
546
|
+
[
|
547
|
+
'application/json'
|
548
|
+
]
|
549
|
+
)
|
548
550
|
|
549
551
|
|
550
552
|
# authentication setting
|
pluggy_sdk/api/identity_api.py
CHANGED
@@ -278,11 +278,12 @@ class IdentityApi:
|
|
278
278
|
|
279
279
|
|
280
280
|
# set the HTTP header `Accept`
|
281
|
-
|
282
|
-
[
|
283
|
-
|
284
|
-
|
285
|
-
|
281
|
+
if 'Accept' not in _header_params:
|
282
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
283
|
+
[
|
284
|
+
'application/json'
|
285
|
+
]
|
286
|
+
)
|
286
287
|
|
287
288
|
|
288
289
|
# authentication setting
|
@@ -545,11 +546,12 @@ class IdentityApi:
|
|
545
546
|
|
546
547
|
|
547
548
|
# set the HTTP header `Accept`
|
548
|
-
|
549
|
-
[
|
550
|
-
|
551
|
-
|
552
|
-
|
549
|
+
if 'Accept' not in _header_params:
|
550
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
551
|
+
[
|
552
|
+
'application/json'
|
553
|
+
]
|
554
|
+
)
|
553
555
|
|
554
556
|
|
555
557
|
# authentication setting
|
@@ -278,11 +278,12 @@ class IncomeReportApi:
|
|
278
278
|
|
279
279
|
|
280
280
|
# set the HTTP header `Accept`
|
281
|
-
|
282
|
-
[
|
283
|
-
|
284
|
-
|
285
|
-
|
281
|
+
if 'Accept' not in _header_params:
|
282
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
283
|
+
[
|
284
|
+
'application/json'
|
285
|
+
]
|
286
|
+
)
|
286
287
|
|
287
288
|
|
288
289
|
# authentication setting
|
pluggy_sdk/api/investment_api.py
CHANGED
@@ -307,11 +307,12 @@ class InvestmentApi:
|
|
307
307
|
|
308
308
|
|
309
309
|
# set the HTTP header `Accept`
|
310
|
-
|
311
|
-
[
|
312
|
-
|
313
|
-
|
314
|
-
|
310
|
+
if 'Accept' not in _header_params:
|
311
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
312
|
+
[
|
313
|
+
'application/json'
|
314
|
+
]
|
315
|
+
)
|
315
316
|
|
316
317
|
|
317
318
|
# authentication setting
|
@@ -618,11 +619,12 @@ class InvestmentApi:
|
|
618
619
|
|
619
620
|
|
620
621
|
# set the HTTP header `Accept`
|
621
|
-
|
622
|
-
[
|
623
|
-
|
624
|
-
|
625
|
-
|
622
|
+
if 'Accept' not in _header_params:
|
623
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
624
|
+
[
|
625
|
+
'application/json'
|
626
|
+
]
|
627
|
+
)
|
626
628
|
|
627
629
|
|
628
630
|
# authentication setting
|
@@ -879,11 +881,12 @@ class InvestmentApi:
|
|
879
881
|
|
880
882
|
|
881
883
|
# set the HTTP header `Accept`
|
882
|
-
|
883
|
-
[
|
884
|
-
|
885
|
-
|
886
|
-
|
884
|
+
if 'Accept' not in _header_params:
|
885
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
886
|
+
[
|
887
|
+
'application/json'
|
888
|
+
]
|
889
|
+
)
|
887
890
|
|
888
891
|
|
889
892
|
# authentication setting
|