ENUM

KeyPoolStatus

An enumeration of key pool statuses.

link GraphQL Schema definition

1enum KeyPoolStatus {
2
3# The key pool is active and can generate more key batches.
4ACTIVE
5
6# The key pool is inactive and all batches are invalid.
7INACTIVE
8
9# The key pool is invalid and new batches cannot be made.
10INVALIDATED
11}