UNPKG

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.

23 lines (22 loc) 511 B
import { IntuitErrorItem, IntuitFaultType } from '../types.js'; /** * The Intuit Error Response Interface */ export interface IntuitErrorData { /** * The status code of the response */ statusCode: number; /** * The Array of Error Objects returned from the Intuit API */ intuitError: Array<IntuitErrorItem>; /** * The type of the error */ type: IntuitFaultType; /** * The Transaction ID of the Request from Intuit */ intuitTID: string; }