SelectedCustomizableOption
Identifies a customized product that has been placed in a cart.
type SelectedCustomizableOption = {
__typename?: 'SelectedCustomizableOption'; /** The unique ID for a specific `CustomizableOptionInterface` object, such as a `CustomizableFieldOption`, `CustomizableFileOption`, or `CustomizableAreaOption` object. */
customizable_option_uid: Scalars['ID']['output']; /** @deprecated Use `SelectedCustomizableOption.customizable_option_uid` instead. */
id: Scalars['Int']['output']; /** Indicates whether the customizable option is required. */
is_required: Scalars['Boolean']['output']; /** The display name of the selected customizable option. */
label: Scalars['String']['output']; /** A value indicating the order to display this option. */
sort_order: Scalars['Int']['output']; /** The type of `CustomizableOptionInterface` object. */
type: Scalars['String']['output']; /** An array of selectable values. */
values: Array<Maybe<SelectedCustomizableOptionValue>>;
};