TransferToAccountType Property

Type of account where money has to be deposited to.

Syntax

ANSI (Cross Platform)
int GetTransferToAccountType();
int SetTransferToAccountType(int iTransferToAccountType); Unicode (Windows) INT GetTransferToAccountType();
INT SetTransferToAccountType(INT iTransferToAccountType);

Possible Values

AT_CHECKING(0), 
AT_SAVINGS(1),
AT_MONEY_MARKET(2),
AT_LINE_OF_CREDIT(3),
AT_CREDIT_CARD(4)
@property (nonatomic,readwrite,assign,getter=transferToAccountType,setter=setTransferToAccountType:) int transferToAccountType;
- (int)transferToAccountType;
- (void)setTransferToAccountType:(int)newTransferToAccountType;

Possible Values

AT_CHECKING(0), 
AT_SAVINGS(1),
AT_MONEY_MARKET(2),
AT_LINE_OF_CREDIT(3),
AT_CREDIT_CARD(4)
#define PID_BANKTRANSFER_TRANSFERTOACCOUNTTYPE 53

IPWORKSOFX_EXTERNAL void* IPWORKSOFX_CALL IPWorksOFX_BankTransfer_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKSOFX_EXTERNAL int IPWORKSOFX_CALL IPWorksOFX_BankTransfer_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

Type of account where money has to be deposited to.

This is required to be provided when initiating or modifying a bank transfer (i.e., when TransferFunds or ModifyTransfer methods are called). If TransferFromAccountType and TransferToAccountType are set to CreditCard, then the TransferFromBankId and TransferToBankId are not required to be provided in the request.

This property uses the following values:

  • atChecking (0)
  • atSavings (1)
  • atMoneyMarket (2)
  • atLineOfCredit (3)
  • atCreditCard (4)

This property is not available at design time.

Data Type

Integer

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