SelectedCustomizableOptionValue
Identifies the value of the selected customized option.
type SelectedCustomizableOptionValue = {
__typename?: 'SelectedCustomizableOptionValue'; /** The unique ID for a value object that corresponds to the object represented by the `customizable_option_uid` attribute. */
customizable_option_value_uid: Scalars['ID']['output']; /** @deprecated Use `SelectedCustomizableOptionValue.customizable_option_value_uid` instead. */
id: Scalars['Int']['output']; /** The display name of the selected value. */
label: Scalars['String']['output']; /** The price of the selected customizable value. */
price: CartItemSelectedOptionValuePrice; /** The text identifying the selected value. */
value: Scalars['String']['output'];
};