/** * This file was auto-generated by Fern from our API Definition. */ /** * Complete QuickBooks sandbox data structure * * Note: For dump operations, accounts/customers/etc. will contain full API response objects * with additional fields beyond the minimal input schema. This is expected behavior. */ export interface QuickBooksData { /** List of accounts (input: minimal, output: full API objects) */ accounts?: Record[]; /** List of customers (input: minimal, output: full API objects) */ customers?: Record[]; /** List of vendors (input: minimal, output: full API objects) */ vendors?: Record[]; /** List of invoices (input: minimal, output: full API objects) */ invoices?: Record[]; /** List of payments (input: minimal, output: full API objects) */ payments?: Record[]; /** Accepts any additional properties */ [key: string]: any; }