mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-07 18:21:30 +00:00
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Request to retrieve closed orders for a symbol
|
|
/// </summary>
|
|
public record GetClosedOrdersRequest : SharedSymbolRequest
|
|
{
|
|
/// <summary>
|
|
/// Filter by start time
|
|
/// </summary>
|
|
public DateTime? StartTime { get; }
|
|
/// <summary>
|
|
/// Filter by end time
|
|
/// </summary>
|
|
public DateTime? EndTime { get; }
|
|
/// <summary>
|
|
/// Max number of results
|
|
/// </summary>
|
|
public int? Limit { get; }
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="symbol">Symbol to get closed orders for</param>
|
|
/// <param name="startTime">Filter by start time</param>
|
|
/// <param name="endTime">Filter by end time</param>
|
|
/// <param name="limit">Max number of results</param>
|
|
/// <param name="exchangeParameters">Exchange specific parameters</param>
|
|
public GetClosedOrdersRequest(SharedSymbol symbol, DateTime? startTime = null, DateTime? endTime = null, int? limit = null, ExchangeParameters? exchangeParameters = null) : base(symbol, exchangeParameters)
|
|
{
|
|
StartTime = startTime;
|
|
EndTime = endTime;
|
|
Limit = limit;
|
|
}
|
|
}
|
|
}
|