PurchaseAmount Property
Purchase amount to be authorized.
Syntax
char* GetPurchaseAmount();
int SetPurchaseAmount(const char* lpszPurchaseAmount);
LPWSTR GetPurchaseAmount();
INT SetPurchaseAmount(LPCWSTR lpszPurchaseAmount);
@property (nonatomic,readwrite,assign,getter=purchaseAmount,setter=setPurchaseAmount:) NSString* purchaseAmount; - (NSString*)purchaseAmount; - (void)setPurchaseAmount:(NSString*)newPurchaseAmount;
public var purchaseAmount: String { get {...}
set {...} }
Default Value
""
Remarks
This field contains the purchase amount to be authorized. The transaction amount is to be presented with an implied decimal point. For example, US $10.00 must be represented as 1000, and $0.10 is likewise simply 10. The allowable number of significant digits as well as the positioning of any implied decimal point is dictated by the designated PurchaseExponent. This field may not contain a negative number.
Data Type
String