# CartLineCustomization Represents a customization applied to a cart line item, including the group name, option name, and value. ## Type Definition ```graphql type CartLineCustomization { groupName: String name: String value: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | groupName | String | The name of the customization group (e.g. "Delivery"). | | name | String | The name of the customization option (e.g. "Production time"). | | value | String | The value of the customization. For text customizations, this is the user-entered text. For selection customizations, this is null. | ## Relationships CartLineCustomization is a component type that belongs to cart line items. It provides detailed customization metadata for individual line items within a cart, allowing representation of both grouped customizations and their specific values. ## Example ```graphql { groupName name value } ``` ## Implements This type does not implement any interfaces. ## Related Types This type is typically used in conjunction with cart line item types that aggregate customization information.