/** * 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 ConvertWorksheetToModelRequest { /** * List of Worksheet IDs. */ 'worksheet_ids'?: Array; /** * List of Worksheet IDs to be excluded. */ 'exclude_worksheet_ids'?: Array; /** * Indicates whether all the worksheet needs to be converted to models. */ 'convert_all'?: boolean | null; /** * Indicates whether the changes should be applied to database. */ 'apply_changes'?: boolean | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "worksheet_ids", "baseName": "worksheet_ids", "type": "Array", "format": "" }, { "name": "exclude_worksheet_ids", "baseName": "exclude_worksheet_ids", "type": "Array", "format": "" }, { "name": "convert_all", "baseName": "convert_all", "type": "boolean", "format": "" }, { "name": "apply_changes", "baseName": "apply_changes", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return ConvertWorksheetToModelRequest.attributeTypeMap; } public constructor() { } }