/** * 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 CalendarResponse { /** * Name of the calendar */ 'calendar_name'?: string | null; /** * Name of the connection */ 'connection_name'?: string | null; /** * Type of data warehouse */ 'data_warehouse_type'?: string | null; /** * Last modification time in milliseconds */ 'modification_time_in_millis'?: string | null; /** * Name of the author who created the calendar */ 'author_name'?: string | null; /** * Unique ID of the connection */ 'connection_id'?: string | null; /** * Unique ID of the calendar */ 'calendar_id'?: string | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "calendar_name", "baseName": "calendar_name", "type": "string", "format": "" }, { "name": "connection_name", "baseName": "connection_name", "type": "string", "format": "" }, { "name": "data_warehouse_type", "baseName": "data_warehouse_type", "type": "string", "format": "" }, { "name": "modification_time_in_millis", "baseName": "modification_time_in_millis", "type": "string", "format": "" }, { "name": "author_name", "baseName": "author_name", "type": "string", "format": "" }, { "name": "connection_id", "baseName": "connection_id", "type": "string", "format": "" }, { "name": "calendar_id", "baseName": "calendar_id", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return CalendarResponse.attributeTypeMap; } public constructor() { } }