/** * Model for a PowerBI embed report with token. * * @export * @class Report */ export declare class Report { private _token; private _name; private _url; private _id; /** * Gets the report Id. * * @readonly * @type {string} * @memberof Report */ readonly Id: string; /** * Gets the report name * * @readonly * @type {string} * @memberof Report */ readonly Name: string; /** * Gets the report URL * * @readonly * @type {string} * @memberof Report */ readonly Url: string; /** * Gets the report access token. * * @readonly * @type {string} * @memberof Report */ readonly Token: string; /** * Creates an instance of Report. * @param {string} id - Report id. * @param {string} name - Report name * @param {string} token - Report access token. * @param {string} url - Report url. * @memberof Report */ constructor(id: string, name: string, token: string, url: string); }