classOrderModel
public class OrderModel
{
public int OrderId { get; set; }
public string Symbol { get; set; }
public int OrderSide { get; set; }
public int OrderType { get; set; }
public int OrderStatus { get; set; }
// Additional order fields from portfolio manager
}| OrderModel | Type | Description | Example value |
|---|---|---|---|
| OrderId | int | 0 | |
| Symbol | string | "" | |
| OrderSide | int | 0 | |
| OrderType | int | 0 | |
| OrderStatus | int | 0 |
Example JSON
{
"orderId": 0,
"symbol": "",
"orderSide": 0,
"orderType": 0,
"orderStatus": 0
}