# ProductBundleContent A product bundle content item with image, name, and value. ## Type Definition ```graphql type ProductBundleContent { image: Image name: String value: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | `image` | [`Image`](/reference/storefront/1.3.0/objects/image) | The image for this bundle content option. | | `name` | `String` | The name for this bundle content option. | | `value` | `String` | The value for this bundle content option. | ## Relationships `ProductBundleContent` contains a reference to the `Image` type, which provides image data for the bundle content option. All fields are optional and may be null. ## Example ```graphql { image { url } name value } ``` ## Implements This type does not implement any interfaces. ## Related Types - [Image](/reference/storefront/1.3.0/objects/image)