kalshi-typescript
Version:
OpenAPI client for kalshi-typescript
40 lines (35 loc) • 965 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
export interface AssociatedEvent {
/**
* The event ticker.
*/
'ticker': string;
/**
* Whether only the \'yes\' side can be used for this event.
*/
'is_yes_only': boolean;
/**
* Maximum number of markets from this event (inclusive). Null means no limit.
*/
'size_max'?: number | null;
/**
* Minimum number of markets from this event (inclusive). Null means no limit.
*/
'size_min'?: number | null;
/**
* List of active quoters for this event.
*/
'active_quoters': Array<string>;
}