Get Batch Order List
BatchOrderLists
Request Parameter
Parameter | Type | Meaning |
---|---|---|
account | Account | Account |
Result Reponse
Parameter | Type | Meaning |
---|---|---|
isSuccess | bool | Interface result |
data | List | BatchResult list is returned |
message | string | isSuccess = False error description is returned |
BatchResult Parameter
Return type : Object
Parameter | Type | Meaning |
---|---|---|
functionType | int | Function Type : 0 New 、 15 Amend Price 、 20 Amend Quantity 、 30 Cancel 、90 Failed |
date | string | Date |
branchNo | string | Branch Aumber |
account | string | Account |
batchSeqNo | string | Batch Serial Number |
Request Example
Console.WriteLine(sdk.FutOpt.BatchOrderLists(account));
Response Example
{
isSuccess = True,
message = ,
data =[
BatchResult{
functionType = 0, // Type of function (int)
date = 2023/10/04, // Query Date (string)
branchNo = 6460, // Branch number (string)
account = 26, // Account (string)
batchSeqNo = 11EE626533D072228000000C29304663 // Serial number (string)
},
...
]
}