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 for your plan
12isAvailable: Boolean!
13
14# If true, it's a default tier that is used as a fallback
15isDefault: Boolean!
16
17# Limits for this tier
18#
19# All elements are always returned
20specification: [RateLimitSpecification!]!
21
22}