OBJECT

RateLimitTier

link GraphQL Schema definition

1type RateLimitTier {
2tierName: String!
3
4# If true, this is the current tier set on the server.
5# It can be lower than the highest available tier if it's set manually in AMS.
6isCurrent: Boolean!
7
8# If true, it's one of the old tiers used before introducing the new ones
9isOld: Boolean!
10
11# If true, this tier is available in a client's plan
12isAvailable: Boolean!
13
14# If true, it's a default tier that is used as a fallback
15isDefault: Boolean!
16
17# Short text description of the tier
18description: String
19
20# Limits for this tier
21#
22# All elements are always returned
23specification: [RateLimitSpecification!]!
24
25}