OBJECT

KeyPoolNode

The information associated with a given key pool.

link GraphQL Schema definition

1type KeyPoolNode {
2
3# The key batches that have been generated in the key pool.
4batches(after: String): KeyBatchConnection
5
6# The description of the key pool.
7description: String!
8
9# The key pool ID, which is unique.
10id: ID!
11
12# The product type associated with the key pool, which determines what kind of
13# keys are generated.
14productType: String!
15
16# The SKU associated with the key pool, which is used to redeem content.
17sku: String!
18
19# Status of the key pool, which can be active, inactive, or invalidated.
20status: KeyPoolStatus!
21
22}