Direct Payment Integrator V6 - Online Help
Direct Payment Integrator V6
Questions / Feedback?

TransactionType Property

Specifies the type of transaction to process.

Syntax

[VB.NET]
Public Property TransactionType As TsysecommerceTransactionTypes

[C#]
public TsysecommerceTransactionTypes TransactionType {get; set;}

enum TsysecommerceTransactionTypes { dmtECommerce, dmtMOTO, dmtRecurring, dmtInstallment }

Remarks

The following types of transactions are supported by this component:

dmtECommerce (0)This is an E-Commerce transaction, and consists of goods or services sold online over the Internet.
dmtMOTO (1)This is a Mail Order or Telephone Order transaction, and consists of goods sold through the mail or over the phone.
dmtRecurring (2)This is a recurring payment, such as a magazine subscription or health club membership.
dmtInstallment (3)This is an installment payment. For example, "Three easy payments of $19.95".

All of these transactions are card-not-present transactions. If you wish to authorize card-present transactions, you must use the TSYSRetail component.

To settle a transaction authorized with the ttInstallment TransactionType, you must use the TSYSDetailRecord component to add the number of this installment and the total count of all installments to be made. For instance, if the purchase was for "Three easy payments of $19.95", and this is the first payment, then the installment number will be 1, and the installment count 3. An example is included below:


  TSYSECommerce.TransactionType = ttInstallment
  TSYSECommerce.TransactionAmount = "1995"
  TSYSECommerce.Authorize()

  DetailRecord.ParseAggregate TSYSECommerce.GetDetailAggregate()
  DetailRecord.InstallmentCount = 3
  DetailRecord.InstallmentNumber = 1
  
  TSYSSettle.DetailAggregate[5] = DetailRecord.GetDetailAggregate()

Default Value

0

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 6.0.6240.0