/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; export class PngOptionsInput { /** * Indicates whether to include the cover page with the Liveboard title. */ 'include_cover_page'?: boolean | null; /** * Indicates whether to include a page with all applied filters. */ 'include_filter_page'?: boolean | null; /** * Indicates personalised view of the Liveboard in case of png */ 'personalised_view_id'?: string | null; /** * Desired width of the Liveboard image in pixels. Ex. 1920 for Full HD image Version: 10.9.0.cl or later */ 'image_resolution'?: number | null; /** * The scale of the image in percentage. Ex. 100 for 100% scale. Version: 10.9.0.cl or later */ 'image_scale'?: number | null; /** * Indicates whether to include the header of the liveboard. Version: 10.9.0.cl or later */ 'include_header'?: boolean | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "include_cover_page", "baseName": "include_cover_page", "type": "boolean", "format": "" }, { "name": "include_filter_page", "baseName": "include_filter_page", "type": "boolean", "format": "" }, { "name": "personalised_view_id", "baseName": "personalised_view_id", "type": "string", "format": "" }, { "name": "image_resolution", "baseName": "image_resolution", "type": "number", "format": "int32" }, { "name": "image_scale", "baseName": "image_scale", "type": "number", "format": "int32" }, { "name": "include_header", "baseName": "include_header", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return PngOptionsInput.attributeTypeMap; } public constructor() { } }