UNPKG

kalshi-typescript

Version:

Official TypeScript SDK for the Kalshi API

40 lines (39 loc) 1.14 kB
/** * Kalshi Trade API Manual Endpoints * Manually defined OpenAPI spec for endpoints being migrated to spec-first approach * * The version of the OpenAPI document: 3.6.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 { MarketMetadata } from './market-metadata'; import type { SettlementSource } from './settlement-source'; export interface GetEventMetadataResponse { /** * A path to an image that represents this event. */ 'image_url': string; /** * A path to an image that represents the image of the featured market. */ 'featured_image_url'?: string; /** * Metadata for the markets in this event. */ 'market_details': Array<MarketMetadata>; /** * A list of settlement sources for this event. */ 'settlement_sources': Array<SettlementSource>; /** * Event competition. */ 'competition'?: string | null; /** * Event scope, based on the competition. */ 'competition_scope'?: string | null; }