kalshi-typescript
Version:
OpenAPI client for kalshi-typescript
29 lines (21 loc) • 1.04 kB
Markdown
# SubaccountTransfer
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**transfer_id** | **string** | Unique identifier for this transfer. | [default to undefined]
**from_subaccount** | **number** | Source subaccount number (0 for primary, 1-32 for subaccounts). | [default to undefined]
**to_subaccount** | **number** | Destination subaccount number (0 for primary, 1-32 for subaccounts). | [default to undefined]
**amount_cents** | **number** | Transfer amount in cents. | [default to undefined]
**created_ts** | **number** | Unix timestamp when the transfer was created. | [default to undefined]
## Example
```typescript
import { SubaccountTransfer } from 'kalshi-typescript';
const instance: SubaccountTransfer = {
transfer_id,
from_subaccount,
to_subaccount,
amount_cents,
created_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)