GetDetailAggregate Method
Returns an aggregate containing details of this transaction, which is then used for settlement.
Syntax
function GetDetailAggregate(): String;Remarks
This method returns an aggregate containing all of the required data to send a transaction to settlement. This aggregate must be passed to the FDMSOmahaBatchMgr component's DetailAggregate array property in order to settle the transaction. If you wish to view or change any part of the aggregate (such as adding a gratuity or additional info for an Installment payment), you may use the FDMSOmahaDetailRecord component to do so.
Note: This method may only be called after a successful authorization. If the authorization was not successful (and the ResponseSuccess is false) the method raises an exception.
An example of how this method is used is shown below:
OmahaRetail.AuthOnly() If (OmahaRetail.ResponseSuccess = True) Then OmahaDetailRecord.ParseDetailRecord(OmahaRetail.GetDetailAggregate()) End If