CustomizableMultipleOption
Contains information about a multiselect that is defined as part of a customizable option.
type CustomizableMultipleOption = CustomizableOptionInterface & {
__typename?: 'CustomizableMultipleOption';
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 multiselect. */
value?: Maybe<Array<Maybe<CustomizableMultipleValue>>>;
};