Skip to content

Commit

Permalink
Generated Xendit php SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
xendit-devx-bot committed Apr 1, 2024
1 parent a655165 commit 315f641
Show file tree
Hide file tree
Showing 182 changed files with 2,373 additions and 377 deletions.
9 changes: 9 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ docs/PaymentRequest/Capture.md
docs/PaymentRequest/CaptureListResponse.md
docs/PaymentRequest/CaptureParameters.md
docs/PaymentRequest/Card.md
docs/PaymentRequest/CardChannelCode.md
docs/PaymentRequest/CardChannelProperties.md
docs/PaymentRequest/CardInformation.md
docs/PaymentRequest/CardParameters.md
docs/PaymentRequest/CardVerificationResults.md
docs/PaymentRequest/CardVerificationResultsThreeDSecure.md
docs/PaymentRequest/DirectDebit.md
Expand Down Expand Up @@ -60,6 +62,7 @@ docs/PaymentRequest/PaymentRequestParametersChannelProperties.md
docs/PaymentRequest/PaymentRequestParametersChannelPropertiesAllOf.md
docs/PaymentRequest/PaymentRequestShippingInformation.md
docs/PaymentRequest/PaymentRequestStatus.md
docs/PaymentRequest/PaymentSimulation.md
docs/PaymentRequest/QRCode.md
docs/PaymentRequest/QRCodeChannelCode.md
docs/PaymentRequest/QRCodeChannelProperties.md
Expand All @@ -80,8 +83,10 @@ lib/PaymentRequest/Capture.php
lib/PaymentRequest/CaptureListResponse.php
lib/PaymentRequest/CaptureParameters.php
lib/PaymentRequest/Card.php
lib/PaymentRequest/CardChannelCode.php
lib/PaymentRequest/CardChannelProperties.php
lib/PaymentRequest/CardInformation.php
lib/PaymentRequest/CardParameters.php
lib/PaymentRequest/CardVerificationResults.php
lib/PaymentRequest/CardVerificationResultsThreeDSecure.php
lib/PaymentRequest/DirectDebit.php
Expand Down Expand Up @@ -132,6 +137,7 @@ lib/PaymentRequest/PaymentRequestParametersChannelProperties.php
lib/PaymentRequest/PaymentRequestParametersChannelPropertiesAllOf.php
lib/PaymentRequest/PaymentRequestShippingInformation.php
lib/PaymentRequest/PaymentRequestStatus.php
lib/PaymentRequest/PaymentSimulation.php
lib/PaymentRequest/QRCode.php
lib/PaymentRequest/QRCodeChannelCode.php
lib/PaymentRequest/QRCodeChannelProperties.php
Expand All @@ -148,8 +154,10 @@ test/Api/PaymentRequestApiTest.php
test/Model/PaymentRequest/CaptureListResponseTest.php
test/Model/PaymentRequest/CaptureParametersTest.php
test/Model/PaymentRequest/CaptureTest.php
test/Model/PaymentRequest/CardChannelCodeTest.php
test/Model/PaymentRequest/CardChannelPropertiesTest.php
test/Model/PaymentRequest/CardInformationTest.php
test/Model/PaymentRequest/CardParametersTest.php
test/Model/PaymentRequest/CardTest.php
test/Model/PaymentRequest/CardVerificationResultsTest.php
test/Model/PaymentRequest/CardVerificationResultsThreeDSecureTest.php
Expand Down Expand Up @@ -200,6 +208,7 @@ test/Model/PaymentRequest/PaymentRequestParametersTest.php
test/Model/PaymentRequest/PaymentRequestShippingInformationTest.php
test/Model/PaymentRequest/PaymentRequestStatusTest.php
test/Model/PaymentRequest/PaymentRequestTest.php
test/Model/PaymentRequest/PaymentSimulationTest.php
test/Model/PaymentRequest/QRCodeChannelCodeTest.php
test/Model/PaymentRequest/QRCodeChannelPropertiesTest.php
test/Model/PaymentRequest/QRCodeParametersTest.php
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The official Xendit PHP SDK provides a simple and convenient way to call Xendit's REST API
in applications written in PHP.

* Package version: 4.3.0
* Package version: 5.0.0

# Getting Started

Expand All @@ -28,7 +28,7 @@ To install the bindings via [Composer](https://getcomposer.org/), add the follow
}
],
"require": {
"xendit/xendit-php": "4.3.0"
"xendit/xendit-php": "5.0.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xendit/xendit-php",
"version": "4.3.0",
"version": "5.0.0",
"description": "Xendit PHP SDK",
"keywords": [
"openapitools",
Expand Down
6 changes: 4 additions & 2 deletions docs/BalanceApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ All URIs are relative to https://api.xendit.co, except if the operation defines
## `getBalance()` Function

```php
getBalance($account_type, $currency, $for_user_id): \BalanceAndTransaction\Balance
getBalance($account_type, $currency, $at_timestamp, $for_user_id): \BalanceAndTransaction\Balance
```

Retrieves balances for a business, default to CASH type
Expand All @@ -44,6 +44,7 @@ Retrieves balances for a business, default to CASH type
|-------------|:-------------:|:-------------:|-------------|
| **account_type** | **string** | | ['CASH'] |
| **currency** | **string** | | |
| **at_timestamp** | **\DateTime** | | |
| **for_user_id** | **string** | | |

### Usage Example
Expand All @@ -59,10 +60,11 @@ Configuration::setXenditKey("YOUR_API_KEY_HERE");
$apiInstance = new BalanceApi();
$account_type = "CASH"; // string | The selected balance type
$currency = "IDR"; // string | Currency for filter for customers with multi currency accounts
$at_timestamp = 2020-06-19T00:00+07:00; // \DateTime | The timestamp you want to use as the limit for balance retrieval
$for_user_id = "5dbf20d7c8eb0c0896f811b6"; // string | The sub-account user-id that you want to make this transaction for. This header is only used if you have access to xenPlatform. See xenPlatform for more information

try {
$result = $apiInstance->getBalance($account_type, $currency, $for_user_id);
$result = $apiInstance->getBalance($account_type, $currency, $at_timestamp, $for_user_id);
print_r($result);
} catch (\Xendit\XenditSdkException $e) {
echo 'Exception when calling BalanceApi->getBalance: ', $e->getMessage(), PHP_EOL;
Expand Down
3 changes: 2 additions & 1 deletion docs/PaymentMethod/Card.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ use Xendit\PaymentMethod\Card;

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **currency** | **string** | ☑️ | | null |
| **channel_code** | [**CardChannelCode**](CardChannelCode.md) | | | null |
| **currency** | **string** | | | null |
| **channel_properties** | [**CardChannelProperties**](CardChannelProperties.md) | ☑️ | | null |
| **card_information** | [**TokenizedCardInformation**](TokenizedCardInformation.md) | | | null |
| **card_verification_results** | [**CardVerificationResults**](CardVerificationResults.md) | | | null |
Expand Down
18 changes: 18 additions & 0 deletions docs/PaymentMethod/CardChannelCode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# # CardChannelCode
Card Channel Code

```php
use Xendit\PaymentMethod\CardChannelCode;
```


## Enum


* `GPN` (value: `'GPN'`)

* `XENDIT_ENUM_DEFAULT_FALLBACK` (value: `UNKNOWN_ENUM_VALUE`)

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.

[[Back to README]](../../README.md)
1 change: 1 addition & 0 deletions docs/PaymentMethod/CardChannelProperties.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use Xendit\PaymentMethod\CardChannelProperties;
| **success_return_url** | **string** | | URL where the end-customer is redirected if the authorization is successful | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **failure_return_url** | **string** | | URL where the end-customer is redirected if the authorization failed | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **cardonfile_type** | **string** | | Type of “credential-on-file” / “card-on-file” payment being made. Indicate that this payment uses a previously linked Payment Method for charging. | RECURRING |
| **expires_at** | **\DateTime** | | | null |


[[Back to README]](../../README.md)
6 changes: 6 additions & 0 deletions docs/PaymentMethod/DirectDebitChannelCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ use Xendit\PaymentMethod\DirectDebitChannelCode;

* `BPI` (value: `'BPI'`)

* `AUTODEBIT_BPI` (value: `'AUTODEBIT_BPI'`)

* `BPI_RECURRING` (value: `'BPI_RECURRING'`)

* `BRI` (value: `'BRI'`)

* `BNI` (value: `'BNI'`)
Expand Down Expand Up @@ -55,6 +59,8 @@ use Xendit\PaymentMethod\DirectDebitChannelCode;

* `AUTODEBIT_UBP` (value: `'AUTODEBIT_UBP'`)

* `UBP_DEBIT_PULL` (value: `'UBP_DEBIT_PULL'`)

* `AFFIN_FPX` (value: `'AFFIN_FPX'`)

* `AGRO_FPX` (value: `'AGRO_FPX'`)
Expand Down
2 changes: 1 addition & 1 deletion docs/PaymentMethod/EWalletChannelCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use Xendit\PaymentMethod\EWalletChannelCode;

* `ALIPAY` (value: `'ALIPAY'`)

* `TOUCHANDGO` (value: `'TOUCHANDGO'`)
* `TOUCHNGO` (value: `'TOUCHNGO'`)

* `XENDIT_ENUM_DEFAULT_FALLBACK` (value: `UNKNOWN_ENUM_VALUE`)

Expand Down
1 change: 1 addition & 0 deletions docs/PaymentMethod/EWalletChannelProperties.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use Xendit\PaymentMethod\EWalletChannelProperties;
| **success_return_url** | **string** | | URL where the end-customer is redirected if the authorization is successful | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **failure_return_url** | **string** | | URL where the end-customer is redirected if the authorization failed | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **cancel_return_url** | **string** | | URL where the end-customer is redirected if the authorization cancelled | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **pending_return_url** | **string** | | URL where the end-customer is redirected if the authorization is pending | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **mobile_number** | **string** | | Mobile number of customer in E.164 format (e.g. +628123123123). For OVO one time payment use only. | +628123123123 |
| **redeem_points** | **string** | | 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. | REDEEM_NONE |
| **cashtag** | **string** | | Available for JENIUSPAY only | $abc1234 |
Expand Down
2 changes: 2 additions & 0 deletions docs/PaymentMethod/QRCodeChannelCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ use Xendit\PaymentMethod\QRCodeChannelCode;

* `LINKAJA` (value: `'LINKAJA'`)

* `XENDIT` (value: `'XENDIT'`)

* `XENDIT_ENUM_DEFAULT_FALLBACK` (value: `UNKNOWN_ENUM_VALUE`)

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.
Expand Down
20 changes: 11 additions & 9 deletions docs/PaymentMethod/TokenizedCardInformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@ use Xendit\PaymentMethod\TokenizedCardInformation;

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **token_id** | **string** | ☑️ | | null |
| **masked_card_number** | **string** | ☑️ | 1st 6 and last 4 digits of the card | null |
| **token_id** | **string** | | | null |
| **masked_card_number** | **string** | | 1st 6 and last 4 digits of the card | null |
| **cardholder_name** | **string** | | Cardholder name is optional but recommended for 3DS 2 / AVS verification | null |
| **expiry_month** | **string** | ☑️ | Card expiry month in MM format | null |
| **expiry_year** | **string** | ☑️ | Card expiry month in YY format | null |
| **fingerprint** | **string** | ☑️ | Xendit-generated identifier for the unique card number. Multiple payment method objects can be created for the same account - e.g. if the user first creates a one-time payment request, and then later on creates a multiple-use payment method using the same account. The fingerprint helps to identify the unique account being used. | null |
| **type** | **string** | ☑️ | Whether the card is a credit or debit card | null |
| **network** | **string** | ☑️ | Card network - VISA, MASTERCARD, JCB, AMEX, DISCOVER, BCA | null |
| **country** | **string** | ☑️ | Country where the card was issued ISO 3166-1 Alpha-2 | null |
| **issuer** | **string** | ☑️ | Issuer of the card, most often an issuing bank For example, “BCA”, “MANDIRI” | null |
| **expiry_month** | **string** | | Card expiry month in MM format | null |
| **expiry_year** | **string** | | Card expiry month in YY format | null |
| **fingerprint** | **string** | | Xendit-generated identifier for the unique card number. Multiple payment method objects can be created for the same account - e.g. if the user first creates a one-time payment request, and then later on creates a multiple-use payment method using the same account. The fingerprint helps to identify the unique account being used. | null |
| **type** | **string** | | Whether the card is a credit or debit card | null |
| **network** | **string** | | Card network - VISA, MASTERCARD, JCB, AMEX, DISCOVER, BCA | null |
| **country** | **string** | | Country where the card was issued ISO 3166-1 Alpha-2 | null |
| **issuer** | **string** | | Issuer of the card, most often an issuing bank For example, “BCA”, “MANDIRI” | null |
| **card_number** | **string** | | | null |
| **one_time_token** | **string** | | | null |


[[Back to README]](../../README.md)
6 changes: 6 additions & 0 deletions docs/PaymentMethod/VirtualAccountChannelCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ use Xendit\PaymentMethod\VirtualAccountChannelCode;

* `AMBANK` (value: `'AMBANK'`)

* `BNC` (value: `'BNC'`)

* `HANA` (value: `'HANA'`)

* `MUAMALAT` (value: `'MUAMALAT'`)

* `XENDIT_ENUM_DEFAULT_FALLBACK` (value: `UNKNOWN_ENUM_VALUE`)

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.
Expand Down
5 changes: 3 additions & 2 deletions docs/PaymentRequest/Card.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ use Xendit\PaymentRequest\Card;

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **currency** | [**PaymentRequestCurrency**](PaymentRequestCurrency.md) | ☑️ | | null |
| **channel_code** | [**CardChannelCode**](CardChannelCode.md) | | | null |
| **currency** | [**PaymentRequestCurrency**](PaymentRequestCurrency.md) | | | null |
| **channel_properties** | [**CardChannelProperties**](CardChannelProperties.md) | ☑️ | | null |
| **card_information** | [**CardInformation**](CardInformation.md) | ☑️ | | null |
| **card_information** | [**CardInformation**](CardInformation.md) | | | null |
| **card_verification_results** | [**CardVerificationResults**](CardVerificationResults.md) | | | null |


Expand Down
18 changes: 18 additions & 0 deletions docs/PaymentRequest/CardChannelCode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# # CardChannelCode
Card Channel Code

```php
use Xendit\PaymentRequest\CardChannelCode;
```


## Enum


* `GPN` (value: `'GPN'`)

* `XENDIT_ENUM_DEFAULT_FALLBACK` (value: `UNKNOWN_ENUM_VALUE`)

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.

[[Back to README]](../../README.md)
1 change: 1 addition & 0 deletions docs/PaymentRequest/CardChannelProperties.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ use Xendit\PaymentRequest\CardChannelProperties;
| **failure_return_url** | **string** | | URL where the end-customer is redirected if the authorization failed | https://webhook.site/f4b755f5-4770-4a11-8c72-cc0b3cc6b882 |
| **cardonfile_type** | **string** | | Type of “credential-on-file” / “card-on-file” payment being made. Indicate that this payment uses a previously linked Payment Method for charging. | RECURRING |
| **merchant_id_tag** | **string** | | 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 | null |
| **expires_at** | **\DateTime** | | | null |


[[Back to README]](../../README.md)
10 changes: 6 additions & 4 deletions docs/PaymentRequest/CardInformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@ use Xendit\PaymentRequest\CardInformation;

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **token_id** | **string** | ☑️ | | null |
| **masked_card_number** | **string** | ☑️ | 1st 6 and last 4 digits of the card | null |
| **expiry_month** | **string** | ☑️ | Card expiry month in MM format | null |
| **expiry_year** | **string** | ☑️ | Card expiry month in YY format | null |
| **token_id** | **string** | | | null |
| **masked_card_number** | **string** | | 1st 6 and last 4 digits of the card | null |
| **expiry_month** | **string** | | Card expiry month in MM format | null |
| **expiry_year** | **string** | | Card expiry month in YY format | null |
| **cardholder_name** | **string** | | Cardholder name | null |
| **fingerprint** | **string** | | | null |
| **type** | **string** | | | null |
| **network** | **string** | | | null |
| **country** | **string** | | | null |
| **issuer** | **string** | | | null |
| **card_number** | **string** | | | null |
| **one_time_token** | **string** | | | null |


[[Back to README]](../../README.md)
16 changes: 16 additions & 0 deletions docs/PaymentRequest/CardParameters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# # CardParameters


```php
use Xendit\PaymentRequest\CardParameters;
```

## Properties

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **channel_properties** | [**CardChannelProperties**](CardChannelProperties.md) | ☑️ | | null |
| **card_information** | [**CardInformation**](CardInformation.md) | | | null |


[[Back to README]](../../README.md)
36 changes: 35 additions & 1 deletion docs/PaymentRequest/DirectDebitChannelCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ use Xendit\PaymentRequest\DirectDebitChannelCode;

* `BPI` (value: `'BPI'`)

* `BPI_RECURRING` (value: `'BPI_RECURRING'`)

* `BDO` (value: `'BDO'`)

* `CIMBNIAGA` (value: `'CIMBNIAGA'`)
Expand All @@ -31,7 +33,9 @@ use Xendit\PaymentRequest\DirectDebitChannelCode;

* `UBP` (value: `'UBP'`)

* `AUTODEBIT_UBP` (value: `'AUTODEBIT_UBP'`)
* `UBP_EADA` (value: `'UBP_EADA'`)

* `UBP_DEBIT_PULL` (value: `'UBP_DEBIT_PULL'`)

* `CHINABANK` (value: `'CHINABANK'`)

Expand Down Expand Up @@ -135,6 +139,36 @@ use Xendit\PaymentRequest\DirectDebitChannelCode;

* `UOB_FPX_BUSINESS` (value: `'UOB_FPX_BUSINESS'`)

* `BDO_ONLINE_BANKING` (value: `'BDO_ONLINE_BANKING'`)

* `BPI_ONLINE_BANKING` (value: `'BPI_ONLINE_BANKING'`)

* `UNIONBANK_ONLINE_BANKING` (value: `'UNIONBANK_ONLINE_BANKING'`)

* `BOC_ONLINE_BANKING` (value: `'BOC_ONLINE_BANKING'`)

* `CHINABANK_ONLINE_BANKING` (value: `'CHINABANK_ONLINE_BANKING'`)

* `INSTAPAY_ONLINE_BANKING` (value: `'INSTAPAY_ONLINE_BANKING'`)

* `LANDBANK_ONLINE_BANKING` (value: `'LANDBANK_ONLINE_BANKING'`)

* `MAYBANK_ONLINE_BANKING` (value: `'MAYBANK_ONLINE_BANKING'`)

* `METROBANK_ONLINE_BANKING` (value: `'METROBANK_ONLINE_BANKING'`)

* `PNB_ONLINE_BANKING` (value: `'PNB_ONLINE_BANKING'`)

* `PSBANK_ONLINE_BANKING` (value: `'PSBANK_ONLINE_BANKING'`)

* `PESONET_ONLINE_BANKING` (value: `'PESONET_ONLINE_BANKING'`)

* `RCBC_ONLINE_BANKING` (value: `'RCBC_ONLINE_BANKING'`)

* `ROBINSONS_BANK_ONLINE_BANKING` (value: `'ROBINSONS_BANK_ONLINE_BANKING'`)

* `SECURITY_BANK_ONLINE_BANKING` (value: `'SECURITY_BANK_ONLINE_BANKING'`)

* `XENDIT_ENUM_DEFAULT_FALLBACK` (value: `UNKNOWN_ENUM_VALUE`)

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.
Expand Down
2 changes: 1 addition & 1 deletion docs/PaymentRequest/DirectDebitChannelProperties.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ use Xendit\PaymentRequest\DirectDebitChannelProperties;

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **email** | **string** | | Email address of the customer that is registered to the partner channel | [email protected] |
| **mobile_number** | **string** | | Mobile number of the customer registered to the partner channel | +62818555988 |
| **success_return_url** | **string** | | | null |
| **failure_return_url** | **string** | | | null |
| **identity_document_number** | **string** | | | null |
| **account_number** | **string** | | | 1234567890 |
| **card_last_four** | **string** | | Last four digits of the debit card | 8888 |
| **card_expiry** | **string** | | Expiry month and year of the debit card (in MM/YY format) | 06/24 |
| **email** | **string** | | Email address of the customer that is registered to the partner channel | [email protected] |


[[Back to README]](../../README.md)
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use Xendit\PaymentRequest\DirectDebitChannelPropertiesBankRedirect;

| Name | Type | Required | Description | Examples |
|------------|:-------------:|:-------------:|-------------|:-------------:|
| **email** | **string** | | | null |
| **mobile_number** | **string** | | Mobile number of the customer that is registered to channel | null |
| **success_return_url** | **string** | | | null |
| **failure_return_url** | **string** | | | null |
Expand Down
Loading

0 comments on commit 315f641

Please sign in to comment.