You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's used in a few places, so needs to be handled differently.
* @var string value to request a card alias only (uppAliasOnly data item)
./src/Interfaces/Constants.php
$data[] = $this->getAmountInteger() ?: 'uppAliasOnly';
./src/Message/AbstractRequest.php
$data['uppAliasOnly'] = Gateway::CARD_ALIAS_ONLY;
./src/Message/AbstractRedirectRequest.php
The new useAlias is also used, so it may well be covered, but we need to be sure:
Now a zero amount is treated like any other amount in the UPP hash, rather than being replaced by the uppAliasOnly literal string.
If the amount is zero, then the useAlias flag is automatically set with the assumption that a card alias is being requested. This should work with other payment type aliases too, such as the PayPal orderId.
We set useAlias to yes, as that appears most often in documentation. In some places it is specified as true, and other places 1. They all seem to work. For now.
It's used in a few places, so needs to be handled differently.
The new
useAlias
is also used, so it may well be covered, but we need to be sure:The text was updated successfully, but these errors were encountered: