# Milestone


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **string** | Unique identifier for the milestone. | [default to undefined]
**category** | **string** | Category of the milestone. E.g. Sports, Elections, Esports, Crypto. | [default to undefined]
**type** | **string** | Type of the milestone. E.g. football_game, basketball_game, soccer_tournament_multi_leg, baseball_game, hockey_match, golf_tournament, political_race. | [default to undefined]
**start_date** | **string** | Start date of the milestone. | [default to undefined]
**end_date** | **string** | End date of the milestone, if any. | [optional] [default to undefined]
**related_event_tickers** | **Array&lt;string&gt;** | List of event tickers related to this milestone. | [default to undefined]
**title** | **string** | Title of the milestone. | [default to undefined]
**notification_message** | **string** | Notification message for the milestone. | [default to undefined]
**source_id** | **string** | Source id of milestone if available. | [optional] [default to undefined]
**source_ids** | **{ [key: string]: string; }** | Source ids of milestone if available. | [optional] [default to undefined]
**details** | **{ [key: string]: any; }** | Additional details about the milestone. | [default to undefined]
**primary_event_tickers** | **Array&lt;string&gt;** | List of event tickers directly related to the outcome of this milestone. | [default to undefined]
**last_updated_ts** | **string** | Last time this structured target was updated. | [default to undefined]

## Example

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

const instance: Milestone = {
    id,
    category,
    type,
    start_date,
    end_date,
    related_event_tickers,
    title,
    notification_message,
    source_id,
    source_ids,
    details,
    primary_event_tickers,
    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)
