kalshi-typescript
Version:
Official TypeScript SDK for the Kalshi API
63 lines (62 loc) • 2.04 kB
TypeScript
/**
* 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.
*/
export interface Trade {
/**
* Unique identifier for this trade
*/
'trade_id': string;
/**
* Unique identifier for the market
*/
'ticker': string;
/**
* Trade price (deprecated - use yes_price or no_price)
*/
'price': number;
/**
* Number of contracts bought or sold in this trade
*/
'count': number;
/**
* Fixed-point contract count string (2 decimals, e.g., \"10.00\"; referred to as \"fp\" in field names). Requests accept 0–2 decimal places (e.g., \"10\", \"10.0\", \"10.00\"); responses always emit 2 decimals. Currently only whole contract values are permitted, but the format supports future fractional precision. Integer contract count fields are legacy and will be deprecated; when both integer and fp fields are provided, they must match.
*/
'count_fp': string;
/**
* Yes price for this trade in cents
*/
'yes_price': number;
/**
* No price for this trade in cents
*/
'no_price': number;
/**
* US dollar amount as a fixed-point decimal string with exactly 4 decimal places
*/
'yes_price_dollars': string;
/**
* US dollar amount as a fixed-point decimal string with exactly 4 decimal places
*/
'no_price_dollars': string;
/**
* Side for the taker of this trade
*/
'taker_side': TradeTakerSideEnum;
/**
* Timestamp when this trade was executed
*/
'created_time'?: string;
}
export declare const TradeTakerSideEnum: {
readonly TradeTakerSideYes: "yes";
readonly TradeTakerSideNo: "no";
};
export type TradeTakerSideEnum = typeof TradeTakerSideEnum[keyof typeof TradeTakerSideEnum];