/** * 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'; /** * Schedule run response object */ export class ResponseScheduleRun { /** * GUID of the scheduled job. */ 'id': string; /** * Schedule run start time in milliseconds. */ 'start_time_in_millis': number; /** * Schedule run end time in milliseconds. */ 'end_time_in_millis': number; /** * Status of the schedule run. */ 'status': string; /** * Message details related to the schedule run. */ 'detail'?: string | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "start_time_in_millis", "baseName": "start_time_in_millis", "type": "number", "format": "int32" }, { "name": "end_time_in_millis", "baseName": "end_time_in_millis", "type": "number", "format": "int32" }, { "name": "status", "baseName": "status", "type": "string", "format": "" }, { "name": "detail", "baseName": "detail", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return ResponseScheduleRun.attributeTypeMap; } public constructor() { } }