RecipientPhoneCountryCode Property
The telephone country code of the receiver's phone number.
Syntax
adaptivepay.getRecipientPhoneCountryCode(index, [callback]) adaptivepay.setRecipientPhoneCountryCode(index, recipientPhoneCountryCode, [callback])
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 getRecipientPhoneCountryCode([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 setRecipientPhoneCountryCode([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 telephone country code of the receiver's phone number. For instance, the US is 1, Japan is 81, the United Kingdom is 44, and Ireland is 353. A full list of International Direct Dialing codes can be obtained from the International Telecommunication Union Annex to Operational Bulletin No. 930 (15.IV.2009) "LIST OF ITU-T RECOMMENDATION E.164 ASSIGNED COUNTRY CODES".
This property is required if the RecipientPhoneNumber property is set.
The size of the array is controlled by the RecipientCount property.
This property is not available at design time.
Data Type
String