UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

21 lines (20 loc) 612 B
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem"; import { nullableString } from "../types"; /** * Google Drive data source item, referencing a file in Google Drive */ export declare class RVGoogleDriveDataSourceItem extends RVDataSourceItem { constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; private _identifier; /** * Identifier of the file referenced by this item */ get identifier(): nullableString; set identifier(value: nullableString); /** @hidden */ getType(): string; }