/** * 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 { AuthorMetadataTypeInput } from '../models/AuthorMetadataTypeInput'; import { HttpFile } from '../http/http'; export class AssignChangeAuthorRequest { /** * GUID or name of the metadata object. */ 'metadata': Array; /** * GUID or name of the user who you want to assign as the author. */ 'user_identifier': string; /** * GUID or name of the current author. When defined, the metadata objects authored by the specified owner are filtered for the API operation. */ 'current_owner_identifier'?: string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "metadata", "baseName": "metadata", "type": "Array", "format": "" }, { "name": "user_identifier", "baseName": "user_identifier", "type": "string", "format": "" }, { "name": "current_owner_identifier", "baseName": "current_owner_identifier", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return AssignChangeAuthorRequest.attributeTypeMap; } public constructor() { } }