# ApplySubaccountTransferRequest


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**client_transfer_id** | **string** | Unique client-provided transfer ID for idempotency. | [default to undefined]
**from_subaccount** | **number** | Source subaccount number (0 for primary, 1-32 for numbered subaccounts). | [default to undefined]
**to_subaccount** | **number** | Destination subaccount number (0 for primary, 1-32 for numbered subaccounts). | [default to undefined]
**amount_cents** | **number** | Amount to transfer in cents. | [default to undefined]

## Example

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

const instance: ApplySubaccountTransferRequest = {
    client_transfer_id,
    from_subaccount,
    to_subaccount,
    amount_cents,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
