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