CartItemUpdateInput
A single item to be updated.
type CartItemUpdateInput = {
cart_item_id?: InputMaybe<Scalars['Int']['input']>; /** The unique ID for a `CartItemInterface` object. */
cart_item_uid?: InputMaybe<Scalars['ID']['input']>; /** An array that defines customizable options for the product. */
customizable_options?: InputMaybe<Array<InputMaybe<CustomizableOptionInput>>>; /** Gift message details for the cart item */
gift_message?: InputMaybe<GiftMessageInput>; /** The new quantity of the item. */
quantity?: InputMaybe<Scalars['Float']['input']>;
};