PrimaryKeyType specifies the type of the primary key.

Enumeration data type

  • INTEGER: Integer

  • STRING: String

  • BINARY: Binary

enum PrimaryKeyType {
    INTEGER = 1;
    STRING = 2;
    BINARY = 3;
}