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.
28 lines (25 loc) • 495 B
text/typescript
export interface Account {
FullyQualifiedName: string;
domain: string;
Name: string;
Classification: string;
AccountSubType: string;
CurrencyRef: CurrencyRef;
CurrentBalanceWithSubAccounts: number;
sparse: boolean;
MetaData: MetaData;
AccountType: string;
CurrentBalance: number;
Active: boolean;
SyncToken: string;
Id: string;
SubAccount: boolean;
}
interface MetaData {
CreateTime: string;
LastUpdatedTime: string;
}
interface CurrencyRef {
name: string;
value: string;
}