# EventData


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**event_ticker** | **string** | Unique identifier for this event. | [default to undefined]
**series_ticker** | **string** | Unique identifier for the series this event belongs to. | [default to undefined]
**sub_title** | **string** | Shortened descriptive title for the event. | [default to undefined]
**title** | **string** | Full title of the event. | [default to undefined]
**collateral_return_type** | **string** | Specifies how collateral is returned when markets settle (e.g., \&#39;binary\&#39; for standard yes/no markets). | [default to undefined]
**mutually_exclusive** | **boolean** | If true, only one market in this event can resolve to \&#39;yes\&#39;. If false, multiple markets can resolve to \&#39;yes\&#39;. | [default to undefined]
**category** | **string** | Event category (deprecated, use series-level category instead). | [optional] [default to undefined]
**strike_date** | **string** | The specific date this event is based on. Only filled when the event uses a date strike (mutually exclusive with strike_period). | [optional] [default to undefined]
**strike_period** | **string** | The time period this event covers (e.g., \&#39;week\&#39;, \&#39;month\&#39;). Only filled when the event uses a period strike (mutually exclusive with strike_date). | [optional] [default to undefined]
**markets** | [**Array&lt;Market&gt;**](Market.md) | Array of markets associated with this event. Only populated when \&#39;with_nested_markets&#x3D;true\&#39; is specified in the request. | [optional] [default to undefined]
**available_on_brokers** | **boolean** | Whether this event is available to trade on brokers. | [default to undefined]
**product_metadata** | **object** | Additional metadata for the event. | [default to undefined]
**last_updated_ts** | **string** | Timestamp of when this event\&#39;s metadata was last updated. | [optional] [default to undefined]

## Example

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

const instance: EventData = {
    event_ticker,
    series_ticker,
    sub_title,
    title,
    collateral_return_type,
    mutually_exclusive,
    category,
    strike_date,
    strike_period,
    markets,
    available_on_brokers,
    product_metadata,
    last_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)
