GitHub

ShopifyCheckoutLineItemUpdateInput

interface

import { ShopifyCheckoutLineItemUpdateInput } from '@daffodil/driver/shopify'

The input fields to update a line item on the checkout.

interface ShopifyCheckoutLineItemUpdateInput {
  customAttributes: ShopifyAttributeInput[]
  id: string
  quantity: number
  variantId: string
}

Properties

customAttributes
ShopifyAttributeInput[]

Extra information in the form of an array of Key-Value pairs about the line item.

The input must not contain more than 250 values.

id
string

The ID of the line item.

quantity
number

The quantity of the line item.

variantId
string

The variant ID of the line item.