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.

17 lines (16 loc) 336 B
import { BaseLine, GroupLineDetail } from '../types.js'; /** * 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; }