OBJECT

SelectionOptionDescriptor

Describes one selection out of many for a selection (enumerated) option.

  • type SelectionOptionDescriptor {
  • # The friendly display name of the option.
  • displayName: String!
  • # Whether or not this selection should be visible by default to the user.
  • private: Boolean!
  • # The name of the backing enumeration value this selection is represented by.
  • enumName: String!
  • # The numeric value that represents this selection in the backing enumeration.
  • numericValue: Int!
  • # The value that this selection will be serialized into when serializing the
  • # configuration file.
  • serializeAs: String!
  • }