QuickBooks Integrator 2020 iOS Edition

Questions / Feedback?

paymentMethod (property)

Indicates whether the Bill Payment is being made with a check or a credit card.

Syntax

@property (nonatomic,readwrite,assign,getter=paymentMethod,setter=setPaymentMethod:) int paymentMethod;
- (int)paymentMethod;
- (void)setPaymentMethod:(int)newPaymentMethod;

/* Possible Values */
PM_CHECK(0),
PM_CREDIT_CARD(1)
public var paymentMethod: BillpaymentPaymentMethods {
  get {...}
set {...} }
public enum BillpaymentPaymentMethods : Int32 { case pmCheck = 0 case pmCreditCard = 1 }

Default Value

0

Remarks

If PaymentMethod is set to pmCheck the BankAccountId or BankAccountName is required to identify the account from which the check is drawn. If PaymentMethod is set to pmCreditCard, the CreditCardId or CreditCardName is required to identify the credit card used to make the payment.

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