reveal-sdk-node
Version:
RevealBI Node.js SDK
21 lines (20 loc) • 596 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;
}