/** * 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 { HeaderAttributeInput } from '../models/HeaderAttributeInput'; import { HttpFile } from '../http/http'; /** * Favorite object options. */ export class HeaderUpdateInput { /** * Unique ID of a specified type to identify the header. */ 'identifier'?: string | null; /** * Custom object identifier to uniquely identify header. */ 'obj_identifier'?: string | null; /** * Optional type of the header object. */ 'type'?: HeaderUpdateInputTypeEnum | null; /** * List of attributes to update */ 'attributes': Array; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "identifier", "baseName": "identifier", "type": "string", "format": "" }, { "name": "obj_identifier", "baseName": "obj_identifier", "type": "string", "format": "" }, { "name": "type", "baseName": "type", "type": "HeaderUpdateInputTypeEnum", "format": "" }, { "name": "attributes", "baseName": "attributes", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return HeaderUpdateInput.attributeTypeMap; } public constructor() { } } export type HeaderUpdateInputTypeEnum = "ANSWER" | "LOGICAL_TABLE" | "LOGICAL_COLUMN" | "LIVEBOARD" | "ACTION_OBJECT" | "DATA_SOURCE" | "USER" | "USER_GROUP" ;