ENUM

KeyBatchStatus

An enumeration of key batch statuses.

link GraphQL Schema definition

1enum KeyBatchStatus {
2
3# The key batch is active and keys generated from it can be claimed.
4ACTIVE
5
6# The key batch is inactive and keys generated from it cannot be claimed.
7INACTIVE
8
9# The key batch is invalid and keys generated from it are invalidated.
10INVALIDATED
11}