pluggy-sdk 1.0.0.post14__py3-none-any.whl → 1.0.0.post15__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 +1 -1
- 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_recipient_api.py +42 -35
- pluggy_sdk/api/payment_request_api.py +66 -55
- pluggy_sdk/api/portfolio_yield_api.py +12 -10
- pluggy_sdk/api/smart_account_api.py +36 -30
- 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-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/METADATA +3 -3
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/RECORD +34 -34
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/top_level.txt +0 -0
pluggy_sdk/api/items_api.py
CHANGED
@@ -280,11 +280,12 @@ class ItemsApi:
|
|
280
280
|
|
281
281
|
|
282
282
|
# set the HTTP header `Accept`
|
283
|
-
|
284
|
-
[
|
285
|
-
|
286
|
-
|
287
|
-
|
283
|
+
if 'Accept' not in _header_params:
|
284
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
285
|
+
[
|
286
|
+
'application/json'
|
287
|
+
]
|
288
|
+
)
|
288
289
|
|
289
290
|
# set the HTTP header `Content-Type`
|
290
291
|
if _content_type:
|
@@ -557,11 +558,12 @@ class ItemsApi:
|
|
557
558
|
|
558
559
|
|
559
560
|
# set the HTTP header `Accept`
|
560
|
-
|
561
|
-
[
|
562
|
-
|
563
|
-
|
564
|
-
|
561
|
+
if 'Accept' not in _header_params:
|
562
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
563
|
+
[
|
564
|
+
'application/json'
|
565
|
+
]
|
566
|
+
)
|
565
567
|
|
566
568
|
|
567
569
|
# authentication setting
|
@@ -821,11 +823,12 @@ class ItemsApi:
|
|
821
823
|
|
822
824
|
|
823
825
|
# set the HTTP header `Accept`
|
824
|
-
|
825
|
-
[
|
826
|
-
|
827
|
-
|
828
|
-
|
826
|
+
if 'Accept' not in _header_params:
|
827
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
828
|
+
[
|
829
|
+
'application/json'
|
830
|
+
]
|
831
|
+
)
|
829
832
|
|
830
833
|
|
831
834
|
# authentication setting
|
@@ -1100,11 +1103,12 @@ class ItemsApi:
|
|
1100
1103
|
|
1101
1104
|
|
1102
1105
|
# set the HTTP header `Accept`
|
1103
|
-
|
1104
|
-
[
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1106
|
+
if 'Accept' not in _header_params:
|
1107
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1108
|
+
[
|
1109
|
+
'application/json'
|
1110
|
+
]
|
1111
|
+
)
|
1108
1112
|
|
1109
1113
|
# set the HTTP header `Content-Type`
|
1110
1114
|
if _content_type:
|
@@ -1398,11 +1402,12 @@ class ItemsApi:
|
|
1398
1402
|
|
1399
1403
|
|
1400
1404
|
# set the HTTP header `Accept`
|
1401
|
-
|
1402
|
-
[
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1405
|
+
if 'Accept' not in _header_params:
|
1406
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1407
|
+
[
|
1408
|
+
'application/json'
|
1409
|
+
]
|
1410
|
+
)
|
1406
1411
|
|
1407
1412
|
# set the HTTP header `Content-Type`
|
1408
1413
|
if _content_type:
|
pluggy_sdk/api/loan_api.py
CHANGED
@@ -270,11 +270,12 @@ class LoanApi:
|
|
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 LoanApi:
|
|
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
|
@@ -271,11 +271,12 @@ class PaymentCustomerApi:
|
|
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
|
# set the HTTP header `Content-Type`
|
281
282
|
if _content_type:
|
@@ -545,11 +546,12 @@ class PaymentCustomerApi:
|
|
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
|
@@ -806,11 +808,12 @@ class PaymentCustomerApi:
|
|
806
808
|
|
807
809
|
|
808
810
|
# set the HTTP header `Accept`
|
809
|
-
|
810
|
-
[
|
811
|
-
|
812
|
-
|
813
|
-
|
811
|
+
if 'Accept' not in _header_params:
|
812
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
813
|
+
[
|
814
|
+
'application/json'
|
815
|
+
]
|
816
|
+
)
|
814
817
|
|
815
818
|
|
816
819
|
# authentication setting
|
@@ -1079,11 +1082,12 @@ class PaymentCustomerApi:
|
|
1079
1082
|
|
1080
1083
|
|
1081
1084
|
# set the HTTP header `Accept`
|
1082
|
-
|
1083
|
-
[
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1085
|
+
if 'Accept' not in _header_params:
|
1086
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1087
|
+
[
|
1088
|
+
'application/json'
|
1089
|
+
]
|
1090
|
+
)
|
1087
1091
|
|
1088
1092
|
# set the HTTP header `Content-Type`
|
1089
1093
|
if _content_type:
|
@@ -1369,11 +1373,12 @@ class PaymentCustomerApi:
|
|
1369
1373
|
|
1370
1374
|
|
1371
1375
|
# set the HTTP header `Accept`
|
1372
|
-
|
1373
|
-
[
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1376
|
+
if 'Accept' not in _header_params:
|
1377
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1378
|
+
[
|
1379
|
+
'application/json'
|
1380
|
+
]
|
1381
|
+
)
|
1377
1382
|
|
1378
1383
|
|
1379
1384
|
# authentication setting
|
@@ -269,11 +269,12 @@ class PaymentIntentApi:
|
|
269
269
|
|
270
270
|
|
271
271
|
# set the HTTP header `Accept`
|
272
|
-
|
273
|
-
[
|
274
|
-
|
275
|
-
|
276
|
-
|
272
|
+
if 'Accept' not in _header_params:
|
273
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
274
|
+
[
|
275
|
+
'application/json'
|
276
|
+
]
|
277
|
+
)
|
277
278
|
|
278
279
|
# set the HTTP header `Content-Type`
|
279
280
|
if _content_type:
|
@@ -543,11 +544,12 @@ class PaymentIntentApi:
|
|
543
544
|
|
544
545
|
|
545
546
|
# set the HTTP header `Accept`
|
546
|
-
|
547
|
-
[
|
548
|
-
|
549
|
-
|
550
|
-
|
547
|
+
if 'Accept' not in _header_params:
|
548
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
549
|
+
[
|
550
|
+
'application/json'
|
551
|
+
]
|
552
|
+
)
|
551
553
|
|
552
554
|
|
553
555
|
# authentication setting
|
@@ -803,11 +805,12 @@ class PaymentIntentApi:
|
|
803
805
|
|
804
806
|
|
805
807
|
# set the HTTP header `Accept`
|
806
|
-
|
807
|
-
[
|
808
|
-
|
809
|
-
|
810
|
-
|
808
|
+
if 'Accept' not in _header_params:
|
809
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
810
|
+
[
|
811
|
+
'application/json'
|
812
|
+
]
|
813
|
+
)
|
811
814
|
|
812
815
|
|
813
816
|
# authentication setting
|
@@ -276,11 +276,12 @@ class PaymentRecipientApi:
|
|
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
|
# set the HTTP header `Content-Type`
|
286
287
|
if _content_type:
|
@@ -550,11 +551,12 @@ class PaymentRecipientApi:
|
|
550
551
|
|
551
552
|
|
552
553
|
# set the HTTP header `Accept`
|
553
|
-
|
554
|
-
[
|
555
|
-
|
556
|
-
|
557
|
-
|
554
|
+
if 'Accept' not in _header_params:
|
555
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
556
|
+
[
|
557
|
+
'application/json'
|
558
|
+
]
|
559
|
+
)
|
558
560
|
|
559
561
|
|
560
562
|
# authentication setting
|
@@ -811,11 +813,12 @@ class PaymentRecipientApi:
|
|
811
813
|
|
812
814
|
|
813
815
|
# set the HTTP header `Accept`
|
814
|
-
|
815
|
-
[
|
816
|
-
|
817
|
-
|
818
|
-
|
816
|
+
if 'Accept' not in _header_params:
|
817
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
818
|
+
[
|
819
|
+
'application/json'
|
820
|
+
]
|
821
|
+
)
|
819
822
|
|
820
823
|
|
821
824
|
# authentication setting
|
@@ -1072,11 +1075,12 @@ class PaymentRecipientApi:
|
|
1072
1075
|
|
1073
1076
|
|
1074
1077
|
# set the HTTP header `Accept`
|
1075
|
-
|
1076
|
-
[
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1078
|
+
if 'Accept' not in _header_params:
|
1079
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1080
|
+
[
|
1081
|
+
'application/json'
|
1082
|
+
]
|
1083
|
+
)
|
1080
1084
|
|
1081
1085
|
|
1082
1086
|
# authentication setting
|
@@ -1345,11 +1349,12 @@ class PaymentRecipientApi:
|
|
1345
1349
|
|
1346
1350
|
|
1347
1351
|
# set the HTTP header `Accept`
|
1348
|
-
|
1349
|
-
[
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1352
|
+
if 'Accept' not in _header_params:
|
1353
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1354
|
+
[
|
1355
|
+
'application/json'
|
1356
|
+
]
|
1357
|
+
)
|
1353
1358
|
|
1354
1359
|
# set the HTTP header `Content-Type`
|
1355
1360
|
if _content_type:
|
@@ -1652,11 +1657,12 @@ class PaymentRecipientApi:
|
|
1652
1657
|
|
1653
1658
|
|
1654
1659
|
# set the HTTP header `Accept`
|
1655
|
-
|
1656
|
-
[
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
+
if 'Accept' not in _header_params:
|
1661
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1662
|
+
[
|
1663
|
+
'application/json'
|
1664
|
+
]
|
1665
|
+
)
|
1660
1666
|
|
1661
1667
|
|
1662
1668
|
# authentication setting
|
@@ -1946,11 +1952,12 @@ class PaymentRecipientApi:
|
|
1946
1952
|
|
1947
1953
|
|
1948
1954
|
# set the HTTP header `Accept`
|
1949
|
-
|
1950
|
-
[
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1955
|
+
if 'Accept' not in _header_params:
|
1956
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1957
|
+
[
|
1958
|
+
'application/json'
|
1959
|
+
]
|
1960
|
+
)
|
1954
1961
|
|
1955
1962
|
|
1956
1963
|
# authentication setting
|
@@ -275,11 +275,12 @@ class PaymentRequestApi:
|
|
275
275
|
|
276
276
|
|
277
277
|
# set the HTTP header `Accept`
|
278
|
-
|
279
|
-
[
|
280
|
-
|
281
|
-
|
282
|
-
|
278
|
+
if 'Accept' not in _header_params:
|
279
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
280
|
+
[
|
281
|
+
'application/json'
|
282
|
+
]
|
283
|
+
)
|
283
284
|
|
284
285
|
# set the HTTP header `Content-Type`
|
285
286
|
if _content_type:
|
@@ -546,11 +547,12 @@ class PaymentRequestApi:
|
|
546
547
|
|
547
548
|
|
548
549
|
# set the HTTP header `Accept`
|
549
|
-
|
550
|
-
[
|
551
|
-
|
552
|
-
|
553
|
-
|
550
|
+
if 'Accept' not in _header_params:
|
551
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
552
|
+
[
|
553
|
+
'application/json'
|
554
|
+
]
|
555
|
+
)
|
554
556
|
|
555
557
|
# set the HTTP header `Content-Type`
|
556
558
|
if _content_type:
|
@@ -817,11 +819,12 @@ class PaymentRequestApi:
|
|
817
819
|
|
818
820
|
|
819
821
|
# set the HTTP header `Accept`
|
820
|
-
|
821
|
-
[
|
822
|
-
|
823
|
-
|
824
|
-
|
822
|
+
if 'Accept' not in _header_params:
|
823
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
824
|
+
[
|
825
|
+
'application/json'
|
826
|
+
]
|
827
|
+
)
|
825
828
|
|
826
829
|
# set the HTTP header `Content-Type`
|
827
830
|
if _content_type:
|
@@ -1091,11 +1094,12 @@ class PaymentRequestApi:
|
|
1091
1094
|
|
1092
1095
|
|
1093
1096
|
# set the HTTP header `Accept`
|
1094
|
-
|
1095
|
-
[
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1097
|
+
if 'Accept' not in _header_params:
|
1098
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1099
|
+
[
|
1100
|
+
'application/json'
|
1101
|
+
]
|
1102
|
+
)
|
1099
1103
|
|
1100
1104
|
|
1101
1105
|
# authentication setting
|
@@ -1349,11 +1353,12 @@ class PaymentRequestApi:
|
|
1349
1353
|
|
1350
1354
|
|
1351
1355
|
# set the HTTP header `Accept`
|
1352
|
-
|
1353
|
-
[
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1356
|
+
if 'Accept' not in _header_params:
|
1357
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1358
|
+
[
|
1359
|
+
'application/json'
|
1360
|
+
]
|
1361
|
+
)
|
1357
1362
|
|
1358
1363
|
# set the HTTP header `Content-Type`
|
1359
1364
|
if _content_type:
|
@@ -1619,11 +1624,12 @@ class PaymentRequestApi:
|
|
1619
1624
|
|
1620
1625
|
|
1621
1626
|
# set the HTTP header `Accept`
|
1622
|
-
|
1623
|
-
[
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
+
if 'Accept' not in _header_params:
|
1628
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1629
|
+
[
|
1630
|
+
'application/json'
|
1631
|
+
]
|
1632
|
+
)
|
1627
1633
|
|
1628
1634
|
|
1629
1635
|
# authentication setting
|
@@ -1891,11 +1897,12 @@ class PaymentRequestApi:
|
|
1891
1897
|
|
1892
1898
|
|
1893
1899
|
# set the HTTP header `Accept`
|
1894
|
-
|
1895
|
-
[
|
1896
|
-
|
1897
|
-
|
1898
|
-
|
1900
|
+
if 'Accept' not in _header_params:
|
1901
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1902
|
+
[
|
1903
|
+
'application/json'
|
1904
|
+
]
|
1905
|
+
)
|
1899
1906
|
|
1900
1907
|
|
1901
1908
|
# authentication setting
|
@@ -2151,11 +2158,12 @@ class PaymentRequestApi:
|
|
2151
2158
|
|
2152
2159
|
|
2153
2160
|
# set the HTTP header `Accept`
|
2154
|
-
|
2155
|
-
[
|
2156
|
-
|
2157
|
-
|
2158
|
-
|
2161
|
+
if 'Accept' not in _header_params:
|
2162
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
2163
|
+
[
|
2164
|
+
'application/json'
|
2165
|
+
]
|
2166
|
+
)
|
2159
2167
|
|
2160
2168
|
|
2161
2169
|
# authentication setting
|
@@ -2424,11 +2432,12 @@ class PaymentRequestApi:
|
|
2424
2432
|
|
2425
2433
|
|
2426
2434
|
# set the HTTP header `Accept`
|
2427
|
-
|
2428
|
-
[
|
2429
|
-
|
2430
|
-
|
2431
|
-
|
2435
|
+
if 'Accept' not in _header_params:
|
2436
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
2437
|
+
[
|
2438
|
+
'application/json'
|
2439
|
+
]
|
2440
|
+
)
|
2432
2441
|
|
2433
2442
|
# set the HTTP header `Content-Type`
|
2434
2443
|
if _content_type:
|
@@ -2680,11 +2689,12 @@ class PaymentRequestApi:
|
|
2680
2689
|
|
2681
2690
|
|
2682
2691
|
# set the HTTP header `Accept`
|
2683
|
-
|
2684
|
-
[
|
2685
|
-
|
2686
|
-
|
2687
|
-
|
2692
|
+
if 'Accept' not in _header_params:
|
2693
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
2694
|
+
[
|
2695
|
+
'application/json'
|
2696
|
+
]
|
2697
|
+
)
|
2688
2698
|
|
2689
2699
|
|
2690
2700
|
# authentication setting
|
@@ -2938,11 +2948,12 @@ class PaymentRequestApi:
|
|
2938
2948
|
|
2939
2949
|
|
2940
2950
|
# set the HTTP header `Accept`
|
2941
|
-
|
2942
|
-
[
|
2943
|
-
|
2944
|
-
|
2945
|
-
|
2951
|
+
if 'Accept' not in _header_params:
|
2952
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
2953
|
+
[
|
2954
|
+
'application/json'
|
2955
|
+
]
|
2956
|
+
)
|
2946
2957
|
|
2947
2958
|
|
2948
2959
|
# authentication setting
|
@@ -277,11 +277,12 @@ class PortfolioYieldApi:
|
|
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
|
|
287
288
|
# authentication setting
|
@@ -544,11 +545,12 @@ class PortfolioYieldApi:
|
|
544
545
|
|
545
546
|
|
546
547
|
# set the HTTP header `Accept`
|
547
|
-
|
548
|
-
[
|
549
|
-
|
550
|
-
|
551
|
-
|
548
|
+
if 'Accept' not in _header_params:
|
549
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
550
|
+
[
|
551
|
+
'application/json'
|
552
|
+
]
|
553
|
+
)
|
552
554
|
|
553
555
|
|
554
556
|
# authentication setting
|