E-Payment Integrator 2020 iOS Edition

Questions / Feedback?

bankAccountType (property)

Indicates whether a checking or savings account is used for this transaction.

Syntax

@property (nonatomic,readwrite,assign,getter=bankAccountType,setter=setBankAccountType:) int bankAccountType;
- (int)bankAccountType;
- (void)setBankAccountType:(int)newBankAccountType;

/* Possible Values */
AT_CHECKING(0),
AT_SAVINGS(1)
public var bankAccountType: EcheckBankAccountTypes {
  get {...}
set {...} }
public enum EcheckBankAccountTypes : Int32 { case atChecking = 0 case atSavings = 1 }

Default Value

0

Remarks

Indicates whether a checking or savings account is used for this transaction. For gateways that support it, this property allows funds to be withdrawn (or added in the case of a Credit) from either the customer's Checking or Savings account.

Available values:

Value Definition
atChecking (0) Checking Account.
atSavings (1) Savings Account.

Copyright (c) 2021 /n software inc. - All rights reserved.
E-Payment Integrator 2020 iOS Edition - Version 20.0 [Build 7941]