kalshi-typescript
Version:
OpenAPI client for kalshi-typescript
33 lines (25 loc) • 1.4 kB
Markdown
# StructuredTarget
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **string** | Unique identifier for the structured target. | [optional] [default to undefined]
**name** | **string** | Name of the structured target. | [optional] [default to undefined]
**type** | **string** | Type of the structured target. | [optional] [default to undefined]
**details** | **object** | Additional details about the structured target. Contains flexible JSON data specific to the target type. | [optional] [default to undefined]
**source_id** | **string** | External source identifier for the structured target, if available (e.g., third-party data provider ID). | [optional] [default to undefined]
**source_ids** | **{ [key: string]: string; }** | Source ids of structured target if available. | [optional] [default to undefined]
**last_updated_ts** | **string** | Timestamp when this structured target was last updated. | [optional] [default to undefined]
## Example
```typescript
import { StructuredTarget } from 'kalshi-typescript';
const instance: StructuredTarget = {
id,
name,
type,
details,
source_id,
source_ids,
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)