export type customfields_ClientCustomFieldOption = { /** * Color is the display color for the option. */ color?: string; /** * ID is the unique identifier of the option. */ id?: string; /** * Key is a "human-readable" alternative to ID * uniqueness must be enforced against other option key values for a given custom field */ key?: string; /** * Label is the human-readable text shown for the option. */ label?: string; /** * Object is the resource type discriminator. */ object?: string; };