UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

19 lines (18 loc) 625 B
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource"; import { nullableString } from "../types"; /** QuickBooks data source */ export declare class RVQuickBooksDataSource extends RVDashboardDataSource { constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; _realmId: nullableString; /** Realm Id, the unique ID identifying a specific QuickBooks company. */ get realmId(): nullableString; set realmId(v: nullableString); /** @hidden */ getType(): string; }