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.
24 lines (23 loc) • 574 B
TypeScript
import { TaxLineDetail } from '../types.js';
/**
* TaxLine
*
* @description The tax line for the transaction
*/
export interface TaxLine {
/**
* Required - Must be set to TaxLineDetail
*/
DetailType: 'TaxLineDetail';
/**
* Required - Tax line details
* @see TaxLineDetail for child attributes
*/
TaxLineDetail: TaxLineDetail;
/**
* Optional tax amount (negative values indicate tax credits)
* @format decimal
* @max 15 digits with 10.5 format (15 total digits, 5 decimal places)
*/
Amount?: number;
}