UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

21 lines (20 loc) 670 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; /** @hidden */ _getWrapper(): any; }