CustomizableDropDownOption
Contains information about a drop down menu that is defined as part of a customizable option.
type CustomizableDropDownOption = CustomizableOptionInterface & {
__typename?: 'CustomizableDropDownOption';
option_id?: Maybe<Scalars['Int']['output']>; /** Indicates whether the option is required. */
required?: Maybe<Scalars['Boolean']['output']>; /** The order in which the option is displayed. */
sort_order?: Maybe<Scalars['Int']['output']>; /** The display name for this option. */
title?: Maybe<Scalars['String']['output']>; /** The unique ID for a `CustomizableOptionInterface` object. */
uid: Scalars['ID']['output']; /** An array that defines the set of options for a drop down menu. */
value?: Maybe<Array<Maybe<CustomizableDropDownValue>>>;
};