Skip to content

Commit ded2fb1

Browse files
author
xendit-devx-bot
committed
Generated Xendit python SDK
1 parent cfd867b commit ded2fb1

File tree

161 files changed

+1098
-210
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+1098
-210
lines changed

.openapi-generator/FILES

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ docs/payment_request/Card.md
1313
docs/payment_request/CardChannelCode.md
1414
docs/payment_request/CardChannelProperties.md
1515
docs/payment_request/CardInformation.md
16+
docs/payment_request/CardInstallmentConfiguration.md
1617
docs/payment_request/CardParameters.md
1718
docs/payment_request/CardVerificationResults.md
1819
docs/payment_request/CardVerificationResultsThreeDSecure.md
@@ -134,6 +135,7 @@ xendit/payment_request/model/card.py
134135
xendit/payment_request/model/card_channel_code.py
135136
xendit/payment_request/model/card_channel_properties.py
136137
xendit/payment_request/model/card_information.py
138+
xendit/payment_request/model/card_installment_configuration.py
137139
xendit/payment_request/model/card_parameters.py
138140
xendit/payment_request/model/card_verification_results.py
139141
xendit/payment_request/model/card_verification_results_three_d_secure.py

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The official Xendit Python SDK provides a simple and convenient way to call Xendit's REST API
66
in applications written in Python.
77

8-
* Package version: 5.0.0
8+
* Package version: 6.0.0
99

1010
## Requirements
1111

docs/PaymentRequestApi.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Create Payment Request
5050
|-------------|:-------------:|:-------------:|-------------|
5151
| **idempotency_key** | **str**| | |
5252
| **for_user_id** | **str**| | |
53+
| **with_split_rule** | **str**| | |
5354
| **payment_request_parameters** | [**PaymentRequestParameters**](payment_request/PaymentRequestParameters.md)| | |
5455

5556
### Usage Example
@@ -74,6 +75,7 @@ api_client = xendit.ApiClient()
7475
api_instance = PaymentRequestApi(api_client)
7576
idempotency_key = "5f9a3fbd571a1c4068aa40ce" # str
7677
for_user_id = "5f9a3fbd571a1c4068aa40cf" # str
78+
with_split_rule = "splitru_c676f55d-a9e0-47f2-b672-77564d57a40b" # str
7779
payment_request_parameters = {
7880
"reference_id" : "example-ref-1234",
7981
"amount" : 15000,
@@ -95,7 +97,7 @@ payment_request_parameters = {
9597
# and optional values
9698
try:
9799
# Create Payment Request
98-
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, payment_request_parameters=payment_request_parameters)
100+
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, with_split_rule=with_split_rule, payment_request_parameters=payment_request_parameters)
99101
pprint(api_response)
100102
except xendit.XenditSdkException as e:
101103
print("Exception when calling PaymentRequestApi->create_payment_request: %s\n" % e)
@@ -121,6 +123,7 @@ api_client = xendit.ApiClient()
121123
api_instance = PaymentRequestApi(api_client)
122124
idempotency_key = "5f9a3fbd571a1c4068aa40ce" # str
123125
for_user_id = "5f9a3fbd571a1c4068aa40cf" # str
126+
with_split_rule = "splitru_c676f55d-a9e0-47f2-b672-77564d57a40b" # str
124127
payment_request_parameters = {
125128
"reference_id" : "example-ref-1234",
126129
"amount" : 15000,
@@ -141,7 +144,7 @@ payment_request_parameters = {
141144
# and optional values
142145
try:
143146
# Create Payment Request
144-
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, payment_request_parameters=payment_request_parameters)
147+
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, with_split_rule=with_split_rule, payment_request_parameters=payment_request_parameters)
145148
pprint(api_response)
146149
except xendit.XenditSdkException as e:
147150
print("Exception when calling PaymentRequestApi->create_payment_request: %s\n" % e)
@@ -167,6 +170,7 @@ api_client = xendit.ApiClient()
167170
api_instance = PaymentRequestApi(api_client)
168171
idempotency_key = "5f9a3fbd571a1c4068aa40ce" # str
169172
for_user_id = "5f9a3fbd571a1c4068aa40cf" # str
173+
with_split_rule = "splitru_c676f55d-a9e0-47f2-b672-77564d57a40b" # str
170174
payment_request_parameters = {
171175
"reference_id" : "example-ref-1234",
172176
"currency" : "IDR",
@@ -193,7 +197,7 @@ payment_request_parameters = {
193197
# and optional values
194198
try:
195199
# Create Payment Request
196-
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, payment_request_parameters=payment_request_parameters)
200+
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, with_split_rule=with_split_rule, payment_request_parameters=payment_request_parameters)
197201
pprint(api_response)
198202
except xendit.XenditSdkException as e:
199203
print("Exception when calling PaymentRequestApi->create_payment_request: %s\n" % e)
@@ -219,6 +223,7 @@ api_client = xendit.ApiClient()
219223
api_instance = PaymentRequestApi(api_client)
220224
idempotency_key = "5f9a3fbd571a1c4068aa40ce" # str
221225
for_user_id = "5f9a3fbd571a1c4068aa40cf" # str
226+
with_split_rule = "splitru_c676f55d-a9e0-47f2-b672-77564d57a40b" # str
222227
payment_request_parameters = {
223228
"reference_id" : "example-ref-1234",
224229
"amount" : 1500,
@@ -233,7 +238,7 @@ payment_request_parameters = {
233238
# and optional values
234239
try:
235240
# Create Payment Request
236-
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, payment_request_parameters=payment_request_parameters)
241+
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, with_split_rule=with_split_rule, payment_request_parameters=payment_request_parameters)
237242
pprint(api_response)
238243
except xendit.XenditSdkException as e:
239244
print("Exception when calling PaymentRequestApi->create_payment_request: %s\n" % e)
@@ -259,6 +264,7 @@ api_client = xendit.ApiClient()
259264
api_instance = PaymentRequestApi(api_client)
260265
idempotency_key = "5f9a3fbd571a1c4068aa40ce" # str
261266
for_user_id = "5f9a3fbd571a1c4068aa40cf" # str
267+
with_split_rule = "splitru_c676f55d-a9e0-47f2-b672-77564d57a40b" # str
262268
payment_request_parameters = {
263269
"reference_id" : "example-ref-1234",
264270
"amount" : 15000,
@@ -273,7 +279,7 @@ payment_request_parameters = {
273279
# and optional values
274280
try:
275281
# Create Payment Request
276-
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, payment_request_parameters=payment_request_parameters)
282+
api_response = api_instance.create_payment_request(idempotency_key=idempotency_key, for_user_id=for_user_id, with_split_rule=with_split_rule, payment_request_parameters=payment_request_parameters)
277283
pprint(api_response)
278284
except xendit.XenditSdkException as e:
279285
print("Exception when calling PaymentRequestApi->create_payment_request: %s\n" % e)

docs/payment_method/CardChannelCode.md

+12
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,20 @@ Card Channel Code
77
## Enum
88

99

10+
* `BAY_CARD_INSTALLMENT` (value: `"BAY_CARD_INSTALLMENT"`)
11+
12+
* `BBL_CARD_INSTALLMENT` (value: `"BBL_CARD_INSTALLMENT"`)
13+
1014
* `GPN` (value: `"GPN"`)
1115

16+
* `KBANK_CARD_INSTALLMENT` (value: `"KBANK_CARD_INSTALLMENT"`)
17+
18+
* `KTB_CARD_INSTALLMENT` (value: `"KTB_CARD_INSTALLMENT"`)
19+
20+
* `SCB_CARD_INSTALLMENT` (value: `"SCB_CARD_INSTALLMENT"`)
21+
22+
* `TTB_CARD_INSTALLMENT` (value: `"TTB_CARD_INSTALLMENT"`)
23+
1224
* `XenditEnumDefaultFallback` (value: `UNKNOWN_ENUM_VALUE`)
1325

1426
If you encounter `UNKNOWN_ENUM_VALUE`, it means that this ENUM is unavailable in your current SDK version. Please upgrade to get the newest ENUM.

docs/payment_method/CardChannelProperties.md

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Card Channel Properties
1111
| **failure_return_url** | **str, none_type** | | URL where the end-customer is redirected if the authorization failed | |
1212
| **cardonfile_type** | **str, none_type** | | Type of “credential-on-file” / “card-on-file” payment being made. Indicate that this payment uses a previously linked Payment Method for charging. | |
1313
| **expires_at** | **datetime** | | | |
14+
| **installment_configuration** | [**CardInstallmentConfiguration**](CardInstallmentConfiguration.md) | | | |
15+
| **merchant_id_tag** | **str** | | Tag for a Merchant ID that you want to associate this payment with. For merchants using their own MIDs to specify which MID they want to use | |
1416

1517

1618
[[Back to README]](../../README.md)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CardInstallmentConfiguration
2+
> xendit.payment_method.model.CardInstallmentConfiguration
3+
4+
Card Installment Configuration
5+
6+
## Properties
7+
| Name | Type | Required | Description | Examples |
8+
|------------|:-------------:|:-------------:|-------------|:-------------:|
9+
| **terms** | **int** | | | |
10+
| **interval** | **str** | | | |
11+
| **code** | **str, none_type** | | | |
12+
13+
14+
[[Back to README]](../../README.md)
15+
16+

docs/payment_method/DirectDebitChannelCode.md

+56-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@ Direct Debit Channel Code
1515

1616
* `BPI` (value: `"BPI"`)
1717

18-
* `AUTODEBIT_BPI` (value: `"AUTODEBIT_BPI"`)
19-
2018
* `BPI_RECURRING` (value: `"BPI_RECURRING"`)
2119

2220
* `BRI` (value: `"BRI"`)
2321

24-
* `BNI` (value: `"BNI"`)
22+
* `BNI_AUTOPAY` (value: `"BNI_AUTOPAY"`)
2523

2624
* `CHINABANK` (value: `"CHINABANK"`)
2725

@@ -55,7 +53,7 @@ Direct Debit Channel Code
5553

5654
* `BDO_EPAY` (value: `"BDO_EPAY"`)
5755

58-
* `AUTODEBIT_UBP` (value: `"AUTODEBIT_UBP"`)
56+
* `UBP_EADA` (value: `"UBP_EADA"`)
5957

6058
* `UBP_DEBIT_PULL` (value: `"UBP_DEBIT_PULL"`)
6159

@@ -139,6 +137,60 @@ Direct Debit Channel Code
139137

140138
* `UOB_FPX_BUSINESS` (value: `"UOB_FPX_BUSINESS"`)
141139

140+
* `BDO_ONLINE_BANKING` (value: `"BDO_ONLINE_BANKING"`)
141+
142+
* `BPI_ONLINE_BANKING` (value: `"BPI_ONLINE_BANKING"`)
143+
144+
* `UNIONBANK_ONLINE_BANKING` (value: `"UNIONBANK_ONLINE_BANKING"`)
145+
146+
* `BOC_ONLINE_BANKING` (value: `"BOC_ONLINE_BANKING"`)
147+
148+
* `CHINABANK_ONLINE_BANKING` (value: `"CHINABANK_ONLINE_BANKING"`)
149+
150+
* `INSTAPAY_ONLINE_BANKING` (value: `"INSTAPAY_ONLINE_BANKING"`)
151+
152+
* `LANDBANK_ONLINE_BANKING` (value: `"LANDBANK_ONLINE_BANKING"`)
153+
154+
* `MAYBANK_ONLINE_BANKING` (value: `"MAYBANK_ONLINE_BANKING"`)
155+
156+
* `METROBANK_ONLINE_BANKING` (value: `"METROBANK_ONLINE_BANKING"`)
157+
158+
* `PNB_ONLINE_BANKING` (value: `"PNB_ONLINE_BANKING"`)
159+
160+
* `PSBANK_ONLINE_BANKING` (value: `"PSBANK_ONLINE_BANKING"`)
161+
162+
* `PESONET_ONLINE_BANKING` (value: `"PESONET_ONLINE_BANKING"`)
163+
164+
* `RCBC_ONLINE_BANKING` (value: `"RCBC_ONLINE_BANKING"`)
165+
166+
* `ROBINSONS_BANK_ONLINE_BANKING` (value: `"ROBINSONS_BANK_ONLINE_BANKING"`)
167+
168+
* `SECURITY_BANK_ONLINE_BANKING` (value: `"SECURITY_BANK_ONLINE_BANKING"`)
169+
170+
* `AUTODEBIT_UBP` (value: `"AUTODEBIT_UBP"`)
171+
172+
* `AUTODEBIT_BPI` (value: `"AUTODEBIT_BPI"`)
173+
174+
* `GBW_BBL_MOBILE_BANKING` (value: `"GBW_BBL_MOBILE_BANKING"`)
175+
176+
* `GBW_KBANK_MOBILE_BANKING` (value: `"GBW_KBANK_MOBILE_BANKING"`)
177+
178+
* `GBW_KTB_MOBILE_BANKING` (value: `"GBW_KTB_MOBILE_BANKING"`)
179+
180+
* `GBW_SCB_MOBILE_BANKING` (value: `"GBW_SCB_MOBILE_BANKING"`)
181+
182+
* `GBW_BAY_MOBILE_BANKING` (value: `"GBW_BAY_MOBILE_BANKING"`)
183+
184+
* `GBW_BBL` (value: `"GBW_BBL"`)
185+
186+
* `GBW_KBANK` (value: `"GBW_KBANK"`)
187+
188+
* `GBW_KTB` (value: `"GBW_KTB"`)
189+
190+
* `GBW_SCB` (value: `"GBW_SCB"`)
191+
192+
* `GBW_BAY` (value: `"GBW_BAY"`)
193+
142194
* `XenditEnumDefaultFallback` (value: `UNKNOWN_ENUM_VALUE`)
143195

144196
If you encounter `UNKNOWN_ENUM_VALUE`, it means that this ENUM is unavailable in your current SDK version. Please upgrade to get the newest ENUM.

docs/payment_method/DirectDebitChannelProperties.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Direct Debit Channel Properties
1515
| **identity_document_number** | **str, none_type** | | Identity number of the customer registered to the partner channel | |
1616
| **require_auth** | **bool, none_type** | | | |
1717
| **account_number** | **str, none_type** | | Account number of the customer | |
18+
| **destination_account_id** | **str, none_type** | | Destination Account ID for BaaS topups | |
1819

1920

2021
[[Back to README]](../../README.md)

docs/payment_method/EWalletChannelProperties.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ EWallet Channel Properties
88
|------------|:-------------:|:-------------:|-------------|:-------------:|
99
| **success_return_url** | **str** | | URL where the end-customer is redirected if the authorization is successful | |
1010
| **failure_return_url** | **str** | | URL where the end-customer is redirected if the authorization failed | |
11-
| **cancel_return_url** | **str** | | URL where the end-customer is redirected if the authorization cancelled | |
1211
| **pending_return_url** | **str** | | URL where the end-customer is redirected if the authorization is pending | |
12+
| **cancel_return_url** | **str** | | URL where the end-customer is redirected if the authorization cancelled | |
1313
| **mobile_number** | **str** | | Mobile number of customer in E.164 format (e.g. +628123123123). For OVO one time payment use only. | |
1414
| **redeem_points** | **str** | | REDEEM_NONE will not use any point, REDEEM_ALL will use all available points before cash balance is used. For OVO and ShopeePay tokenized payment use only. | |
1515
| **cashtag** | **str** | | Available for JENIUSPAY only | |
16+
| **promotion_label** | **str** | | Available only for OVO | |
1617

1718

1819
[[Back to README]](../../README.md)

docs/payment_method/QRCodeChannelCode.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ QR Code Channel Code
1919

2020
* `XENDIT` (value: `"XENDIT"`)
2121

22+
* `QRPH` (value: `"QRPH"`)
23+
2224
* `XenditEnumDefaultFallback` (value: `UNKNOWN_ENUM_VALUE`)
2325

2426
If you encounter `UNKNOWN_ENUM_VALUE`, it means that this ENUM is unavailable in your current SDK version. Please upgrade to get the newest ENUM.

docs/payment_method/VirtualAccountChannelCode.md

+10
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,26 @@ Virtual Account Channel Code
3535

3636
* `MSB` (value: `"MSB"`)
3737

38+
* `VPB` (value: `"VPB"`)
39+
40+
* `BIDV` (value: `"BIDV"`)
41+
42+
* `CAKE` (value: `"CAKE"`)
43+
3844
* `STANDARD_CHARTERED` (value: `"STANDARD_CHARTERED"`)
3945

4046
* `AMBANK` (value: `"AMBANK"`)
4147

48+
* `UOB` (value: `"UOB"`)
49+
4250
* `BNC` (value: `"BNC"`)
4351

4452
* `HANA` (value: `"HANA"`)
4553

4654
* `MUAMALAT` (value: `"MUAMALAT"`)
4755

56+
* `BANK_TRANSFER` (value: `"BANK_TRANSFER"`)
57+
4858
* `XenditEnumDefaultFallback` (value: `UNKNOWN_ENUM_VALUE`)
4959

5060
If you encounter `UNKNOWN_ENUM_VALUE`, it means that this ENUM is unavailable in your current SDK version. Please upgrade to get the newest ENUM.

docs/payment_request/CardChannelCode.md

+12
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,20 @@ Card Channel Code
77
## Enum
88

99

10+
* `BAY_CARD_INSTALLMENT` (value: `"BAY_CARD_INSTALLMENT"`)
11+
12+
* `BBL_CARD_INSTALLMENT` (value: `"BBL_CARD_INSTALLMENT"`)
13+
1014
* `GPN` (value: `"GPN"`)
1115

16+
* `KBANK_CARD_INSTALLMENT` (value: `"KBANK_CARD_INSTALLMENT"`)
17+
18+
* `KTB_CARD_INSTALLMENT` (value: `"KTB_CARD_INSTALLMENT"`)
19+
20+
* `SCB_CARD_INSTALLMENT` (value: `"SCB_CARD_INSTALLMENT"`)
21+
22+
* `TTB_CARD_INSTALLMENT` (value: `"TTB_CARD_INSTALLMENT"`)
23+
1224
* `XenditEnumDefaultFallback` (value: `UNKNOWN_ENUM_VALUE`)
1325

1426
If you encounter `UNKNOWN_ENUM_VALUE`, it means that this ENUM is unavailable in your current SDK version. Please upgrade to get the newest ENUM.

docs/payment_request/CardChannelProperties.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Card Channel Properties
1212
| **cardonfile_type** | **str, none_type** | | Type of “credential-on-file” / “card-on-file” payment being made. Indicate that this payment uses a previously linked Payment Method for charging. | |
1313
| **merchant_id_tag** | **str** | | Tag for a Merchant ID that you want to associate this payment with. For merchants using their own MIDs to specify which MID they want to use | |
1414
| **expires_at** | **datetime** | | | |
15+
| **installment_configuration** | [**CardInstallmentConfiguration**](CardInstallmentConfiguration.md) | | | |
16+
| **skip_authorization** | **bool** | | To indicate whether to skip the authorization phase | |
1517

1618

1719
[[Back to README]](../../README.md)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CardInstallmentConfiguration
2+
> xendit.payment_request.model.CardInstallmentConfiguration
3+
4+
Card Installment Configuration
5+
6+
## Properties
7+
| Name | Type | Required | Description | Examples |
8+
|------------|:-------------:|:-------------:|-------------|:-------------:|
9+
| **terms** | **int** | | | |
10+
| **interval** | **str** | | | |
11+
| **code** | **str, none_type** | | | |
12+
13+
14+
[[Back to README]](../../README.md)
15+
16+

docs/payment_request/DirectDebitChannelCode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Direct Debit Channel Code
1313

1414
* `BRI` (value: `"BRI"`)
1515

16-
* `BNI` (value: `"BNI"`)
16+
* `BNI_AUTOPAY` (value: `"BNI_AUTOPAY"`)
1717

1818
* `MANDIRI` (value: `"MANDIRI"`)
1919

docs/payment_request/PaymentRequestChannelProperties.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| **success_return_url** | **str** | | URL where the end-customer is redirected if the authorization is successful | |
99
| **failure_return_url** | **str** | | URL where the end-customer is redirected if the authorization failed | |
1010
| **cancel_return_url** | **str** | | URL where the end-customer is redirected if the authorization cancelled | |
11+
| **pending_return_url** | **str** | | URL where the end-customer is redirected if the authorization is pending | |
1112
| **redeem_points** | **str** | | REDEEM_NONE will not use any point, REDEEM_ALL will use all available points before cash balance is used. For OVO and ShopeePay tokenized payment use only. | |
1213
| **require_auth** | **bool** | | Toggle used to require end-customer to input undergo OTP validation before completing a payment. OTP will always be required for transactions greater than 1,000,000 IDR. For BRI tokenized payment use only. | |
1314
| **merchant_id_tag** | **str** | | Tag for a Merchant ID that you want to associate this payment with. For merchants using their own MIDs to specify which MID they want to use | |

docs/payment_request/PaymentRequestParametersChannelProperties.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| **success_return_url** | **str** | | URL where the end-customer is redirected if the authorization is successful | |
99
| **failure_return_url** | **str** | | URL where the end-customer is redirected if the authorization failed | |
1010
| **cancel_return_url** | **str** | | URL where the end-customer is redirected if the authorization cancelled | |
11+
| **pending_return_url** | **str** | | URL where the end-customer is redirected if the authorization is pending | |
1112
| **redeem_points** | **str** | | REDEEM_NONE will not use any point, REDEEM_ALL will use all available points before cash balance is used. For OVO and ShopeePay tokenized payment use only. | |
1213
| **require_auth** | **bool** | | Toggle used to require end-customer to input undergo OTP validation before completing a payment. OTP will always be required for transactions greater than 1,000,000 IDR. For BRI tokenized payment use only. | |
1314
| **merchant_id_tag** | **str** | | Tag for a Merchant ID that you want to associate this payment with. For merchants using their own MIDs to specify which MID they want to use | |

docs/payment_request/VirtualAccountChannelCode.md

+6
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,16 @@ Virtual Account Channel Code
3535

3636
* `MSB` (value: `"MSB"`)
3737

38+
* `VPB` (value: `"VPB"`)
39+
40+
* `BIDV` (value: `"BIDV"`)
41+
3842
* `STANDARD_CHARTERED` (value: `"STANDARD_CHARTERED"`)
3943

4044
* `AMBANK` (value: `"AMBANK"`)
4145

46+
* `UOB` (value: `"UOB"`)
47+
4248
* `BNC` (value: `"BNC"`)
4349

4450
* `HANA` (value: `"HANA"`)

0 commit comments

Comments
 (0)