API documentation
HistoricalOrderGroup
Fields
| HistoricalOrderGroup | Type | Description | Example value |
|---|---|---|---|
| OrderId | int | 0 | |
| Orders | HistoricalOrderEntry[] |
Example JSON
{
"orderId": 0,
"orders": []
}public class HistoricalOrderGroup
{
public int OrderId { get; set; }
public HistoricalOrderEntry[] Orders { get; set; }
}