kalshi-typescript
Version:
Official TypeScript SDK for the Kalshi API
46 lines (45 loc) • 1.38 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 BidAskDistribution {
/**
* Offer price on the market at the start of the candlestick period (in cents).
*/
'open': number;
/**
* US dollar amount as a fixed-point decimal string with exactly 4 decimal places
*/
'open_dollars': string;
/**
* Lowest offer price on the market during the candlestick period (in cents).
*/
'low': number;
/**
* US dollar amount as a fixed-point decimal string with exactly 4 decimal places
*/
'low_dollars': string;
/**
* Highest offer price on the market during the candlestick period (in cents).
*/
'high': number;
/**
* US dollar amount as a fixed-point decimal string with exactly 4 decimal places
*/
'high_dollars': string;
/**
* Offer price on the market at the end of the candlestick period (in cents).
*/
'close': number;
/**
* US dollar amount as a fixed-point decimal string with exactly 4 decimal places
*/
'close_dollars': string;
}