SelectedBundleOptionValue
Contains details about a value for a selected bundle option.
type SelectedBundleOptionValue = {
__typename?: 'SelectedBundleOptionValue'; /** Use `uid` instead */
id: Scalars['Int']['output']; /** The display name of the value for the selected bundle product option. */
label: Scalars['String']['output']; /** The original price of the value for the selected bundle product option. */
original_price: Money;
price: Scalars['Float']['output']; /** The price of the value for the selected bundle product option. */
priceV2: Money; /** The quantity of the value for the selected bundle product option. */
quantity: Scalars['Float']['output']; /** The unique ID for a `SelectedBundleOptionValue` object */
uid: Scalars['ID']['output'];
};