UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

23 lines (22 loc) 621 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; }