/** * 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 { MetadataInput } from '../models/MetadataInput'; import { SearchSchedulesRequestHistoryRunsOptions } from '../models/SearchSchedulesRequestHistoryRunsOptions'; import { SearchSchedulesRequestSortOptions } from '../models/SearchSchedulesRequestSortOptions'; import { HttpFile } from '../http/http'; export class SearchSchedulesRequest { /** * Metadata objects associated with the scheduled jobs. */ 'metadata'?: Array; /** * The starting record number from where the records should be included. */ 'record_offset'?: number; /** * The number of records that should be included. */ 'record_size'?: number; 'sort_options'?: SearchSchedulesRequestSortOptions; 'history_runs_options'?: SearchSchedulesRequestHistoryRunsOptions; /** * unique ID or name of the Schedule */ 'schedule_identifiers'?: Array; 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": "record_offset", "baseName": "record_offset", "type": "number", "format": "int32" }, { "name": "record_size", "baseName": "record_size", "type": "number", "format": "int32" }, { "name": "sort_options", "baseName": "sort_options", "type": "SearchSchedulesRequestSortOptions", "format": "" }, { "name": "history_runs_options", "baseName": "history_runs_options", "type": "SearchSchedulesRequestHistoryRunsOptions", "format": "" }, { "name": "schedule_identifiers", "baseName": "schedule_identifiers", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return SearchSchedulesRequest.attributeTypeMap; } public constructor() { } }