OBJECT

SendExtensionMessageThrottleData

Information about a rate limit throttle.

link GraphQL Schema definition

1type SendExtensionMessageThrottleData {
2
3# Was the rate limit exceeded.
4isLimitExceeded: Boolean!
5
6# The limit itself.
7limit: String!
8
9# Name of the rate limiter applied.
10rateLimiterName: String!
11
12# How much quota remains.
13remainingQuota: Int!
14
15# Time when this rate limit will reset.
16resetsAt: Time
17
18}