/** * 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'; /** * Input for updating object ID of a metadata object. */ export class UpdateObjIdInput { /** * GUID or name of the metadata object. */ 'metadata_identifier'?: string | null; /** * Type of metadata. Required if metadata_identifier is name of the object. */ 'type'?: UpdateObjIdInputTypeEnum | null; /** * Current object ID value. */ 'current_obj_id'?: string | null; /** * New object ID value to set. */ 'new_obj_id': string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "metadata_identifier", "baseName": "metadata_identifier", "type": "string", "format": "" }, { "name": "type", "baseName": "type", "type": "UpdateObjIdInputTypeEnum", "format": "" }, { "name": "current_obj_id", "baseName": "current_obj_id", "type": "string", "format": "" }, { "name": "new_obj_id", "baseName": "new_obj_id", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return UpdateObjIdInput.attributeTypeMap; } public constructor() { } } export type UpdateObjIdInputTypeEnum = "ANSWER" | "LOGICAL_TABLE" | "LOGICAL_COLUMN" | "LIVEBOARD" | "ACTION_OBJECT" | "DATA_SOURCE" | "USER" | "USER_GROUP" ;