RecipientPaymentType Property
The transaction subtype for the payment.
Syntax
adaptivepay.getRecipientPaymentType(index, [callback]) adaptivepay.setRecipientPaymentType(index, recipientPaymentType, [callback])
Possible Values
0 (ptGoods), 1 (ptService), 2 (ptPersonal), 3 (ptCashAdvance)
Default Value
1
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for the getRecipientPaymentType([callback]) method is defined as:
function(err, data){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'data' is the value returned by the method.
The callback for the setRecipientPaymentType([callback]) method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
The transaction subtype for the payment. Possible values are:
ptGoods (1) | This is a payment for goods. |
ptService (2) | This is a payment for services. (default) |
ptPersonal (3) | This is a person-to-person payment. |
ptCashAdvance (4) | This is a person-to-person payment for a cash advance. |
- Simple and parallel payments (not chained).
- All transactions within the single Pay request must be person-to-person.
- The FeesPayer must be set to either fpEachReceiver or fpSender.
- This feature is available for applications with special permissions level.
The size of the array is controlled by the RecipientCount property.
This property is not available at design time.
Data Type
Integer