/** * The ReportCustomization model module. * @module Ntnx/ReportCustomization * @version 4.1.1-beta-1 * @class ReportCustomization */ export default class ReportCustomization { /** * Constructs a ReportCustomization from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:Ntnx/ReportCustomization} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/ReportCustomization} The populated ReportCustomization instance. */ static constructFromObject(data: any, obj?: any, callFromChild?: boolean): any; /** * Converts a given snake_case string to camelCase. * @param {string} snakeStr - The input string in snake_case format. * @returns {string} - The converted string in camelCase format. */ static snakeToCamel(snakeStr: string): string; $objectType: string; /** @type {object} */ $reserved: object; /** @type {object} */ $unknownFields: object; /** * Returns Custom header HTML for the report. * @return {string} */ getHeaderHtml(): string; /** * Sets Custom header HTML for the report. * @param {string} headerHtml Custom header HTML for the report. */ setHeaderHtml(headerHtml: string): void; headerHtml: string; /** * Returns Custom footer HTML for the report. * @return {string} */ getFooterHtml(): string; /** * Sets Custom footer HTML for the report. * @param {string} footerHtml Custom footer HTML for the report. */ setFooterHtml(footerHtml: string): void; footerHtml: string; /** * Returns Global cascadable style for the report. * @return {string} */ getCssStyleSheet(): string; /** * Sets Global cascadable style for the report. * @param {string} cssStyleSheet Global cascadable style for the report. */ setCssStyleSheet(cssStyleSheet: string): void; cssStyleSheet: string; /** * Returns Custom logo for the report as selected by the user. The logo extID can be fetched using report artifact list API. * @return {string} */ getLogoImageExtId(): string; /** * Sets Custom logo for the report as selected by the user. The logo extID can be fetched using report artifact list API. * @param {string} logoImageExtId Custom logo for the report as selected by the user. The logo extID can be fetched using report artifact list API. */ setLogoImageExtId(logoImageExtId: string): void; logoImageExtId: string; /** * Returns Flag to enable/disable table of contents in the report. * @return {boolean} */ getIsTableOfContentsEnabled(): boolean; /** * Sets Flag to enable/disable table of contents in the report. * @param {boolean} isTableOfContentsEnabled Flag to enable/disable table of contents in the report. */ setIsTableOfContentsEnabled(isTableOfContentsEnabled: boolean): void; isTableOfContentsEnabled: boolean; get$Reserved(): any; get$ObjectType(): string; get$UnknownFields(): any; toJson(forMutation: any): any; validate(scope: any, properties: any, ...args: any[]): Promise; validateProperty(scope: any, property: any): ValidationError; #private; } import ValidationError from "../../../validation/ValidationError";