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.
19 lines (17 loc) • 370 B
text/typescript
// Modification Metadata Interface
export interface ModificationMetadata {
/**
* Creation timestamp (read-only, system-defined)
* @format DateTime
* @filterable
* @sortable
*/
readonly CreateTime: string;
/**
* Last update timestamp (read-only, system-defined)
* @format DateTime
* @filterable
* @sortable
*/
readonly LastUpdatedTime: string;
}