UNPKG

quickbooks-api

Version:

A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.

15 lines (13 loc) 342 B
// Reference Type Interface export interface ReferenceType { /** * Reference ID (required) * @description ID of referenced object from QuickBooks company file */ value: string; /** * Display name of referenced object (optional) * @description Derived from object's common name (e.g. Customer.DisplayName) */ name?: string; }