/** * Kalshi Trade API Manual Endpoints * Manually defined OpenAPI spec for endpoints being migrated to spec-first approach * * The version of the OpenAPI document: 3.11.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 type { PercentilePoint } from './percentile-point'; export interface ForecastPercentilesPoint { /** * The event ticker this forecast is for. */ 'event_ticker': string; /** * Unix timestamp for the inclusive end of the forecast period. */ 'end_period_ts': number; /** * Length of the forecast period in minutes. */ 'period_interval': number; /** * Array of forecast values at different percentiles. */ 'percentile_points': Array; }