/** * 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 { PublishMetadataListItem } from '../models/PublishMetadataListItem'; import { HttpFile } from '../http/http'; export class UnpublishMetadataRequest { /** * Force unpublishes the object. This will break all the dependent objects in the unpublished orgs. */ 'force'?: boolean | null; /** * Should we unpublish all the dependencies for the objects specified. The dependencies will be unpublished if no other published object is using it. */ 'include_dependencies': boolean; /** * Metadata objects. */ 'metadata': Array; /** * Unique ID or name of orgs. */ 'org_identifiers': Array; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "force", "baseName": "force", "type": "boolean", "format": "" }, { "name": "include_dependencies", "baseName": "include_dependencies", "type": "boolean", "format": "" }, { "name": "metadata", "baseName": "metadata", "type": "Array", "format": "" }, { "name": "org_identifiers", "baseName": "org_identifiers", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return UnpublishMetadataRequest.attributeTypeMap; } public constructor() { } }