/** * 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 DeleteCollectionRequest { /** * Unique GUIDs of collections to delete. Note: Collection names cannot be used as identifiers since duplicate names are allowed. */ 'collection_identifiers': Array; /** * Flag to delete child objects of the collection that the user has access to. */ 'delete_children'?: boolean | null; /** * Preview deletion without actually deleting. When set to true, returns what would be deleted without performing the actual deletion. */ 'dry_run'?: boolean | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "collection_identifiers", "baseName": "collection_identifiers", "type": "Array", "format": "" }, { "name": "delete_children", "baseName": "delete_children", "type": "boolean", "format": "" }, { "name": "dry_run", "baseName": "dry_run", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return DeleteCollectionRequest.attributeTypeMap; } public constructor() { } }