Skip to content

Commit e6f2805

Browse files
committed
Synced with docs
1 parent 9bef17a commit e6f2805

File tree

221 files changed

+1625
-538
lines changed

Some content is hidden

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

221 files changed

+1625
-538
lines changed

src/Enum/Errors.php

Lines changed: 590 additions & 2 deletions
Large diffs are not rendered by default.

src/Examples/Accounts/ChargeAccount_1.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* phone_id - The phone ID list. Use the 'all' value to select all phone ids. You should specify the phones having the auto_charge=false
25-
* phone_number - The phone number list. Use the 'all' value to select all phone numbers. Can be used instead of phone_id. You should specify the phones having the auto_charge=false
24+
* phone_id - The phone ID list separated by semicolon (;). Use the 'all' value to select all phone ids. You should specify the phones having the auto_charge=false
25+
* phone_number - The phone number list separated by semicolon (;). Use the 'all' value to select all phone numbers. Can be used instead of phone_id. You should specify the phones having the auto_charge=false
2626
*/
2727
$params = new ChargeAccountParams();
2828

src/Examples/Accounts/ChargeAccount_2.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* phone_id - The phone ID list. Use the 'all' value to select all phone ids. You should specify the phones having the auto_charge=false
25-
* phone_number - The phone number list. Use the 'all' value to select all phone numbers. Can be used instead of phone_id. You should specify the phones having the auto_charge=false
24+
* phone_id - The phone ID list separated by semicolon (;). Use the 'all' value to select all phone ids. You should specify the phones having the auto_charge=false
25+
* phone_number - The phone number list separated by semicolon (;). Use the 'all' value to select all phone numbers. Can be used instead of phone_id. You should specify the phones having the auto_charge=false
2626
*/
2727
$params = new ChargeAccountParams();
2828

src/Examples/Accounts/GetAccountDocuments.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
* @param array $params (See below)
2424
* with_details - Set true to view the uploaded document statuses. (The flag is ignored with the child_account_id=all)
2525
* verification_name - The required account verification name to filter
26-
* verification_status - The account verification status list. The following values are possible: REQUIRED, IN_PROGRESS, VERIFIED
26+
* verification_status - The account verification status list separated by semicolon (;). The following values are possible: REQUIRED, IN_PROGRESS, VERIFIED
2727
* from_unverified_hold_until - Unverified subscriptions hold until the date (from ...) in format: YYYY-MM-DD
2828
* to_unverified_hold_until - Unverified subscriptions hold until the date (... to) in format: YYYY-MM-DD
29-
* child_account_id - The child account ID list. Use the 'all' value to select all child accounts
29+
* child_account_id - The child account ID list separated by semicolon (;). Use the 'all' value to select all child accounts
3030
* children_verifications_only - Set true to get the children account verifications only
3131
*/
3232
$params = new GetAccountDocumentsParams();

src/Examples/Accounts/GetAccountPlans.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* plan_type - The plan type list. The possible values are IM, MAU
25-
* plan_subscription_template_id - The plan ID list
24+
* plan_type - The plan type list separated by semicolon (;). The possible values are IM, MAU
25+
* plan_subscription_template_id - The plan ID list separated by semicolon (;)
2626
*/
2727
$params = new GetAccountPlansParams();
2828

src/Examples/Accounts/GetAvailablePlans.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* plan_type - The plan type list. The possible values are IM, MAU
25-
* plan_subscription_template_id - The plan ID list
24+
* plan_type - The plan type list separated by semicolon (;). The possible values are IM, MAU
25+
* plan_subscription_template_id - The plan ID list separated by semicolon (;)
2626
*/
2727
$params = new GetAvailablePlansParams();
2828

src/Examples/Accounts/GetChildrenAccounts_1.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* child_account_id - The account ID list. Use the 'all' value to select all accounts
24+
* child_account_id - The account ID list separated by semicolon (;). Use the 'all' value to select all accounts
2525
* child_account_name - The child account name part to filter
2626
* child_account_email - The child ccount email to filter
2727
* active - The active flag to filter

src/Examples/Accounts/GetChildrenAccounts_2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* child_account_id - The account ID list. Use the 'all' value to select all accounts
24+
* child_account_id - The account ID list separated by semicolon (;). Use the 'all' value to select all accounts
2525
* child_account_name - The child account name part to filter
2626
* child_account_email - The child ccount email to filter
2727
* active - The active flag to filter

src/Examples/Accounts/GetCurrencyRate_1.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* currency - The currency code list. Examples: RUR, EUR, USD
24+
* currency - The currency code list separated by semicolon (;). Examples: RUR, EUR, USD
2525
* date - The date, format: YYYY-MM-DD
2626
*/
2727
$params = new GetCurrencyRateParams();

src/Examples/Accounts/GetCurrencyRate_2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @param array $params (See below)
24-
* currency - The currency code list. Examples: RUR, EUR, USD
24+
* currency - The currency code list separated by semicolon (;). Examples: RUR, EUR, USD
2525
* date - The date, format: YYYY-MM-DD
2626
*/
2727
$params = new GetCurrencyRateParams();

0 commit comments

Comments
 (0)