reveal-sdk-node
Version:
RevealBI Node.js SDK
23 lines (22 loc) • 641 B
TypeScript
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
import { nullableString } from "../types";
/**
* Box data source item, referencing a file in Box (box.net)
*/
export declare class RVBoxDataSourceItem 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;
/** @hidden */
_getWrapper(): any;
}