/** * 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 { GenericInfo } from '../models/GenericInfo'; import { HttpFile } from '../http/http'; /** * Group of metadata objects identified by type. */ export class CollectionDeleteTypeIdentifiers { /** * Type of the metadata object (e.g., Collection, Worksheet, Table). */ 'type'?: string | null; /** * List of metadata identifiers belonging to the given type. */ 'identifiers'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "type", "baseName": "type", "type": "string", "format": "" }, { "name": "identifiers", "baseName": "identifiers", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return CollectionDeleteTypeIdentifiers.attributeTypeMap; } public constructor() { } }