I am using COM objects to integrate QuickBooks data to my application. I am able to get paymentmethod using IPaymentMethodRetList.
Like :
IPaymentMethodQuery CustQ = requestSet.AppendPaymentMethodQueryRq();
IMsgSetResponse responseSet = sessionManager.DoRequests(requestSet);
_QBPaymentMethodRet = default(IPaymentMethodRet);
_QBPaymentMethodList = default(IPaymentMethodRetList);
IResponse response = responseSet.ResponseList.GetAt(0);
if ((response.Detail != null))
{
_QBPaymentMethodList = (IPaymentMethodRetList)response.Detail;
if (_QBPaymentMethodList != null)
{ ----------------------------
--------------------
}
But I'm unable to find the interface for payment terms. Which interface do I have to use?