/** * 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 { 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; /** * A list of settlement sources for this event. */ 'settlement_sources': Array; /** * Event competition. */ 'competition'?: string | null; /** * Event scope, based on the competition. */ 'competition_scope'?: string | null; }