E-Payment Integrator 2020 C++ Edition

Questions / Feedback?

BankAccountType Property

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

Syntax

ANSI (Cross Platform)
int GetBankAccountType();
int SetBankAccountType(int iBankAccountType); Unicode (Windows) INT GetBankAccountType();
INT SetBankAccountType(INT iBankAccountType);

Possible Values

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

Possible Values

AT_CHECKING(0), 
AT_SAVINGS(1)
#define PID_ECHECK_BANKACCOUNTTYPE 4

INPAY_EXTERNAL void* INPAY_CALL InPay_ECheck_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INPAY_EXTERNAL int INPAY_CALL InPay_ECheck_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

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.

This property is not available at design time.

Data Type

Integer

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