kalshi-typescript
Version:
Official TypeScript SDK for the Kalshi API
27 lines (26 loc) • 820 B
TypeScript
/**
* Kalshi Trading API
* Complete API for the Kalshi trading platform including all handlers for SDK generation
*
* The version of the OpenAPI document: 2.0.0
* Contact: support@kalshi.com
*
* 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 { Market } from './market';
export interface Event {
'event_ticker'?: string;
'series_ticker'?: string;
'sub_title'?: string;
'title'?: string;
'status'?: EventStatusEnum;
'markets'?: Array<Market>;
}
export declare const EventStatusEnum: {
readonly Open: "open";
readonly Closed: "closed";
readonly Settled: "settled";
};
export type EventStatusEnum = typeof EventStatusEnum[keyof typeof EventStatusEnum];