CustomizableOptionInterface
Contains basic information about a customizable option. It can be implemented by several types of configurable options.
type CustomizableOptionInterface = {
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'];
};