CustomerAddress Property
Customer's street address.
Syntax
echeck.getCustomerAddress([callback]) echeck.setCustomerAddress( customerAddress, [callback])
Default Value
""
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 getCustomerAddress([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 setCustomerAddress([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
Customer's street address. This property is used as part of the Address Verification Service (AVS) and contains the customer's street address as it appears on their monthly statement. Only the street number, street name, and apartment number are required in this property. City, state, and zip code are set in the CustomerCity, CustomerState, and CustomerZip properties.
The length of this property varies by gateway. If the customer's address is very long, it is admissible to include only the street number in this property.
NOTE: For the Moneris gateway, this property should contain only the customer's street number. The street name should be added via the AddSpecialField method. For example:
class.CustomerAddress = "123" class.AddSpecialField("avs_street_name", "Nowhere Ln")
This property is not available at design time.
Data Type
String