kalshi-typescript
Version:
OpenAPI client for kalshi-typescript
44 lines (43 loc) • 1.17 kB
TypeScript
/**
* Kalshi Trade API Manual Endpoints
* Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
*
* The version of the OpenAPI document: 3.11.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface StructuredTarget {
/**
* Unique identifier for the structured target.
*/
'id'?: string;
/**
* Name of the structured target.
*/
'name'?: string;
/**
* Type of the structured target.
*/
'type'?: string;
/**
* Additional details about the structured target. Contains flexible JSON data specific to the target type.
*/
'details'?: object;
/**
* External source identifier for the structured target, if available (e.g., third-party data provider ID).
*/
'source_id'?: string;
/**
* Source ids of structured target if available.
*/
'source_ids'?: {
[]: string;
};
/**
* Timestamp when this structured target was last updated.
*/
'last_updated_ts'?: string;
}