# GetHistoricalCutoffResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**market_settled_ts** | **string** | Cutoff based on **market settlement time**. Markets and their candlesticks that settled before this timestamp must be accessed via &#x60;GET /historical/markets&#x60; and &#x60;GET /historical/markets/{ticker}/candlesticks&#x60;.  | [default to undefined]
**trades_created_ts** | **string** | Cutoff based on **trade fill time**. Fills that occurred before this timestamp must be accessed via &#x60;GET /historical/fills&#x60;.  | [default to undefined]
**orders_updated_ts** | **string** | Cutoff based on **order cancellation or execution time**. Orders canceled or fully executed before this timestamp must be accessed via &#x60;GET /historical/orders&#x60;. Resting (active) orders are always available in &#x60;GET /portfolio/orders&#x60;.  | [default to undefined]

## Example

```typescript
import { GetHistoricalCutoffResponse } from 'kalshi-typescript';

const instance: GetHistoricalCutoffResponse = {
    market_settled_ts,
    trades_created_ts,
    orders_updated_ts,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
