/** * 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 { SearchCalendarsRequestSortOptions } from '../models/SearchCalendarsRequestSortOptions'; import { HttpFile } from '../http/http'; export class SearchCalendarsRequest { /** * Unique ID or name of the connection. */ 'connection_identifier'?: string; /** * Pattern to match for calendar names (use \'%\' for wildcard match). */ 'name_pattern'?: string; /** * 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'?: SearchCalendarsRequestSortOptions; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "connection_identifier", "baseName": "connection_identifier", "type": "string", "format": "" }, { "name": "name_pattern", "baseName": "name_pattern", "type": "string", "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": "SearchCalendarsRequestSortOptions", "format": "" } ]; static getAttributeTypeMap() { return SearchCalendarsRequest.attributeTypeMap; } public constructor() { } }