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 (14 loc) 293 B
/** * MemoRef * * @description User-entered message to the customer */ export interface MemoRef { /** * User-entered message to the customer * @description Required field. Maximum 1000 characters. * @maxLength 1000 * @example "Thank you for your business!" */ value: string; }