SelectedBundleOption
Contains details about a selected bundle option.
type SelectedBundleOption = {
__typename?: 'SelectedBundleOption'; /** @deprecated Use `uid` instead */
id: Scalars['Int']['output']; /** The display name of the selected bundle product option. */
label: Scalars['String']['output']; /** The type of selected bundle product option. */
type: Scalars['String']['output']; /** The unique ID for a `SelectedBundleOption` object */
uid: Scalars['ID']['output']; /** An array of selected bundle option values. */
values: Array<Maybe<SelectedBundleOptionValue>>;
};