/** * 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 FetchAsyncImportTaskStatusRequest { /** * List of task IDs to fetch status for. */ 'task_ids'?: Array; /** * List of task statuses to filter on. Valid values: [IN_QUEUE, IN_PROGRESS, COMPLETED, FAILED] */ 'task_status'?: Array; /** * Author GUID or name of async import tasks to filter on. */ 'author_identifier'?: string; /** * The offset point, starting from where the task status should be included in the response. */ 'record_offset'?: number; /** * The number of task statuses that should be included in the response starting from offset position. */ 'record_size'?: number; /** * Boolean flag to specify whether to include import response in the task status objects. */ 'include_import_response'?: boolean | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "task_ids", "baseName": "task_ids", "type": "Array", "format": "" }, { "name": "task_status", "baseName": "task_status", "type": "Array", "format": "" }, { "name": "author_identifier", "baseName": "author_identifier", "type": "string", "format": "" }, { "name": "record_offset", "baseName": "record_offset", "type": "number", "format": "int32" }, { "name": "record_size", "baseName": "record_size", "type": "number", "format": "int32" }, { "name": "include_import_response", "baseName": "include_import_response", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return FetchAsyncImportTaskStatusRequest.attributeTypeMap; } public constructor() { } } export type FetchAsyncImportTaskStatusRequestTaskStatusEnum = "COMPLETED" | "IN_QUEUE" | "IN_PROGRESS" | "FAILED" ;