UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

21 lines (20 loc) 645 B
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource"; import { nullableString } from "../types"; /** Marketo data source, configures the URL to get data from. */ export declare class RVMarketoDataSource extends RVDashboardDataSource { constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; private _url; /** URL to the login endpoint */ get url(): nullableString; set url(value: nullableString); /** @hidden */ getType(): string; /** @hidden */ _getWrapper(): any; }