CustomizableAreaOption
Contains information about a text area that is defined as part of a customizable option.
type CustomizableAreaOption = CustomizableOptionInterface & {
__typename?: 'CustomizableAreaOption';
option_id?: Maybe<Scalars['Int']['output']>; /** The Stock Keeping Unit of the base product. */
product_sku?: Maybe<Scalars['String']['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 object that defines a text area. */
value?: Maybe<CustomizableAreaValue>;
};