GitHub

ShopifyAttributeInput

Type

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

A custom key-value pair that stores additional information on a cart or cart line. Attributes capture additional information like gift messages, special instructions, or custom order details. Learn more about managing carts with the Storefront API.

interface ShopifyAttributeInput {
  key: string
  value: string
}

Properties

key
string

Key or name of the attribute.

value
string

Value of the attribute.