PaymentTypes Property
Collection of payment types in the current batch.
Syntax
[VB.NET] Public ReadOnlyProperty PaymentTypes As PTechPaymentTypeList
[C#] public PTechPaymentTypeList PaymentTypes {get;}
Remarks
This field is returned after sending a BatchInquiry or BatchRelease transaction with the PTechHostSettle component, or after a SendSettlement sent using the PTechManualSettle component. This property will contain the number of payment types in the current batch. Each payment type has a Name, TransCount, and NetAmount tied to it.
For instance, if the payment type contains a single American Express transaction for $10, after a Batch Inquiry: component.PaymentTypes[0].Name = "AE", component.PaymentTypes[0].TransCount = "000001", and component.PaymentTypes[0].NetAmount = "10.00".
This property is read-only.