/** * 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 ScheduleHistoryRunsOptionsInput { /** * Indicates whether to fetch history runs for the scheduled notification. */ 'include_history_runs'?: boolean | null; /** * Indicates the max number of records that can be fetched as past runs of any scheduled job. */ 'record_size'?: number | null; /** * Indicates the starting record number from where history runs records should be fetched. */ 'record_offset'?: number | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "include_history_runs", "baseName": "include_history_runs", "type": "boolean", "format": "" }, { "name": "record_size", "baseName": "record_size", "type": "number", "format": "int32" }, { "name": "record_offset", "baseName": "record_offset", "type": "number", "format": "int32" } ]; static getAttributeTypeMap() { return ScheduleHistoryRunsOptionsInput.attributeTypeMap; } public constructor() { } }