# BatchOrder Batch order details ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **text** | **String** | User defined information. If not empty, must follow the rules below: 1. prefixed with `t-` 2. no longer than 28 bytes without `t-` prefix 3. can only include 0-9, A-Z, a-z, underscore(_), hyphen(-) or dot(.) | [optional] **succeeded** | **Boolean** | Whether order succeeds | [optional] **label** | **String** | Error label, empty string if order succeeds | [optional] **message** | **String** | Detailed error message, empty string if order succeeds | [optional] **id** | **String** | Order ID | [optional] [readonly] **createTime** | **String** | Order creation time | [optional] [readonly] **updateTime** | **String** | Order last modification time | [optional] [readonly] **status** | [**StatusEnum**](#StatusEnum) | Order status - `open`: to be filled - `closed`: filled - `cancelled`: cancelled | [optional] [readonly] **currencyPair** | **String** | Currency pair | [optional] **type** | [**TypeEnum**](#TypeEnum) | Order type. limit - limit order | [optional] **account** | [**AccountEnum**](#AccountEnum) | Account type. spot - use spot account; margin - use margin account | [optional] **side** | [**SideEnum**](#SideEnum) | Order side | [optional] **amount** | **String** | Trade amount | [optional] **price** | **String** | Order price | [optional] **timeInForce** | [**TimeInForceEnum**](#TimeInForceEnum) | Time in force - gtc: GoodTillCancelled - ioc: ImmediateOrCancelled, taker only - poc: PendingOrCancelled, makes a post-only order that always enjoys a maker fee | [optional] **autoBorrow** | **Boolean** | Used in margin trading(i.e. `account` is `margin`) to allow automatic loan of insufficient part if balance is not enough. | [optional] **left** | **String** | Amount left to fill | [optional] [readonly] **fillPrice** | **String** | Total filled in quote currency. Deprecated in favor of `filled_total` | [optional] [readonly] **filledTotal** | **String** | Total filled in quote currency | [optional] [readonly] **fee** | **String** | Fee deducted | [optional] [readonly] **feeCurrency** | **String** | Fee currency unit | [optional] [readonly] **pointFee** | **String** | Point used to deduct fee | [optional] [readonly] **gtFee** | **String** | GT used to deduct fee | [optional] [readonly] **gtDiscount** | **Boolean** | Whether GT fee discount is used | [optional] [readonly] **rebatedFee** | **String** | Rebated fee | [optional] [readonly] **rebatedFeeCurrency** | **String** | Rebated fee currency unit | [optional] [readonly] ## Enum: StatusEnum Name | Value ---- | ----- OPEN | "open" CLOSED | "closed" CANCELLED | "cancelled" ## Enum: TypeEnum Name | Value ---- | ----- LIMIT | "limit" ## Enum: AccountEnum Name | Value ---- | ----- SPOT | "spot" MARGIN | "margin" ## Enum: SideEnum Name | Value ---- | ----- BUY | "buy" SELL | "sell" ## Enum: TimeInForceEnum Name | Value ---- | ----- GTC | "gtc" IOC | "ioc" POC | "poc"