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.

20 lines (17 loc) 322 B
// Imports import { BaseLine, GroupLineDetail } from '../types'; /** * Group Line * * @description A line item in a sales transaction */ export interface GroupLine extends BaseLine { /** * Line detail type */ DetailType: 'GroupLineDetail'; /** * Group line details */ GroupLineDetail: GroupLineDetail; }