transferFromAccountType (property)

Type of account where the transfer is originating from.

Syntax

@property (nonatomic,readwrite,assign,getter=transferFromAccountType,setter=setTransferFromAccountType:) int transferFromAccountType;
- (int)transferFromAccountType;
- (void)setTransferFromAccountType:(int)newTransferFromAccountType;

/* Possible Values */
AT_CHECKING(0),
AT_SAVINGS(1),
AT_MONEY_MARKET(2),
AT_LINE_OF_CREDIT(3),
AT_CREDIT_CARD(4)
public var transferFromAccountType: BanktransferTransferFromAccountTypes {
  get {...}
set {...} }
public enum BanktransferTransferFromAccountTypes : Int32 { case atChecking = 0 case atSavings = 1 case atMoneyMarket = 2 case atLineOfCredit = 3 case atCreditCard = 4 }

Default Value

0

Remarks

Type of account where the transfer is originating from.

This is required to be provided when initiating or modifying a 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)

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