| 12345678910111213141516171819202122232425262728293031 |
- namespace Application.Features.Api.Paper.GetOrders;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int ID,
- string StockCode,
- string StockName,
- string Side,
- string FillRule,
- int Quantity,
- decimal ReservedAmount,
- DateOnly TargetDate,
- DateTime CancelableUntil,
- string Status,
- string? RejectReason,
- DateTime CreatedAt,
- FillInfo? Fill
- );
- public sealed record FillInfo(
- decimal Price,
- int Quantity,
- decimal Fee,
- decimal Tax,
- decimal Amount,
- decimal? RealizedPnL,
- DateOnly PriceDate,
- DateTime FilledAt
- );
- }
|