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
* Splits the payment into sub-merchant settlement and the main merchant commission. Requires separate activation.
6
+
* @package Solinor\PaymentHighway\Model
7
+
*/
8
+
class Splitting extends JsonSerializable
9
+
{
10
+
public$merchant_id = null;
11
+
public$amount = null;
12
+
13
+
/**
14
+
* @param string $merchant_id Sub-merchant ID from the settlements provider. Not to be confused with the sph-merchant value.
15
+
* @param int $amount The amount settled to the sub-merchant's account. The rest will be considered as the main merchant's commission. In the smallest currency unit. E.g. 99.99 € = 9999.
0 commit comments