# ForecastPercentilesPoint


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**event_ticker** | **string** | The event ticker this forecast is for. | [default to undefined]
**end_period_ts** | **number** | Unix timestamp for the inclusive end of the forecast period. | [default to undefined]
**period_interval** | **number** | Length of the forecast period in minutes. | [default to undefined]
**percentile_points** | [**Array&lt;PercentilePoint&gt;**](PercentilePoint.md) | Array of forecast values at different percentiles. | [default to undefined]

## Example

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

const instance: ForecastPercentilesPoint = {
    event_ticker,
    end_period_ts,
    period_interval,
    percentile_points,
};
```

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