You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
482 B
19 lines
482 B
namespace Discord
|
|
{
|
|
/// <summary>
|
|
/// Specifies the level of precision to request in the rate limit
|
|
/// response header.
|
|
/// </summary>
|
|
public enum RateLimitPrecision
|
|
{
|
|
/// <summary>
|
|
/// Specifies precision rounded up to the nearest whole second
|
|
/// </summary>
|
|
Second,
|
|
/// <summary>
|
|
/// Specifies precision rounded to the nearest millisecond.
|
|
/// </summary>
|
|
Millisecond
|
|
}
|
|
}
|