# Transfer Accounts available to transfer: - `spot`: spot account - `margin`: margin account - `futures`: perpetual futures account - `delivery`: delivery futures account ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **currency** | **String** | Transfer currency. For futures account, `currency` can be set to `POINT` or settle currency | **from** | [**FromEnum**](#FromEnum) | Account transferred from | **to** | [**ToEnum**](#ToEnum) | Account transferred to | **amount** | **String** | Transfer amount | **currencyPair** | **String** | Margin currency pair. Required if transfer from or to margin account | [optional] **settle** | **String** | Futures settle currency. Required if `currency` is `POINT` | [optional] ## Enum: FromEnum Name | Value ---- | ----- SPOT | "spot" MARGIN | "margin" FUTURES | "futures" DELIVERY | "delivery" ## Enum: ToEnum Name | Value ---- | ----- SPOT | "spot" MARGIN | "margin" FUTURES | "futures" DELIVERY | "delivery"