OBJECT
SelectionOptionDescriptor
Describes one selection out of many for a selection (enumerated) option.
- type SelectionOptionDescriptor {
- # The friendly display name of the option.
- : String!
- # Whether or not this selection should be visible by default to the user.
- : Boolean!
- # The name of the backing enumeration value this selection is represented by.
- : String!
- # The numeric value that represents this selection in the backing enumeration.
- : Int!
- # The value that this selection will be serialized into when serializing the
- # configuration file.
- : String!
- }