import { ShopifyCartMetafieldsSetInput } from '@daffodil/driver/shopify'
The input fields for a cart metafield value to set.
interface ShopifyCartMetafieldsSetInput {
key: string
ownerId: string
type: string
value: string
}
key string |
|---|
The key name of the cart metafield. |
ownerId string |
|---|
The ID of the cart resource. |
type string |
|---|
The type of data that the cart metafield stores. The type of data must be a supported type. |
value string |
|---|
The data to store in the cart metafield. The data is always stored as a string, regardless of the metafield's type. |