QuickBooks Integrator 2020 C++ Edition

Questions / Feedback?

PaymentMethod Property

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

Syntax

ANSI (Cross Platform)
int GetPaymentMethod();
int SetPaymentMethod(int iPaymentMethod); Unicode (Windows) INT GetPaymentMethod();
INT SetPaymentMethod(INT iPaymentMethod);

Possible Values

PM_CHECK(0), 
PM_CREDIT_CARD(1)
@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)
#define PID_BILLPAYMENT_PAYMENTMETHOD 26

INQB_EXTERNAL void* INQB_CALL InQB_BillPayment_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INQB_EXTERNAL int INQB_CALL InQB_BillPayment_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

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.

Data Type

Integer

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