UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

25 lines (24 loc) 666 B
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource"; import { nullableString } from "../types"; /** * Dynamics CRM data source, specifies the URL to the server. */ export declare class RVDynamicsCrmDataSource extends RVDashboardDataSource { constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; private _url; /** * Dynamics CRM base URL */ get url(): nullableString; set url(value: nullableString); /** @hidden */ getType(): string; /** @hidden */ _getWrapper(): any; }