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) • 307 B
text/typescript
/**
* DateTime
*
* @description The date and time for the invoice
*/
export interface DateTime {
/**
* Date and time in ISO 8601 format. Accepts:
* - Local time zone: YYYY-MM-DDTHH:MM:SS
* - UTC: YYYY-MM-DDTHH:MM:SSZ
* - Specific time zone: YYYY-MM-DDTHH:MM:SS±HH:MM
*/
dateTime: string;
}