Interface IRateLimitValues
Provides information about client-specific rate limit values.
Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public interface IRateLimitValues
Properties
| Improve this Doc View SourceLimit
Gets the total request-per-minute limit for the current client.
Declaration
Int32 Limit { get; }
Property Value
Type | Description |
---|---|
Int32 |
Remaining
Get the remaining number of requests allowed in the current time interval.
Declaration
Int32 Remaining { get; }
Property Value
Type | Description |
---|---|
Int32 |
ResetTimeUtc
Gets end of the current time interval for requests limiting.
Declaration
DateTime ResetTimeUtc { get; }
Property Value
Type | Description |
---|---|
DateTime |