paymentFromAccountType (property)

Indicates the type of account from which the money for this payment is drawn.

Syntax

@property (nonatomic,readwrite,assign,getter=paymentFromAccountType,setter=setPaymentFromAccountType:) int paymentFromAccountType;
- (int)paymentFromAccountType;
- (void)setPaymentFromAccountType:(int)newPaymentFromAccountType;

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

Default Value

0

Remarks

Indicates the type of account from which the money for this payment is drawn.

This is required to be provided when a bill payment or payment modification request is sent to the server (i.e., when PayBill or ModifyPayment methods are called).

This property uses the following four values:

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

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