import { ShopifyCheckoutAttributesUpdateV2Input } from '@daffodil/driver/shopify'
The input fields required to update a checkout's attributes.
interface ShopifyCheckoutAttributesUpdateV2Input {
allowPartialAddresses: boolean
customAttributes: ShopifyAttributeInput[]
note: string
}
allowPartialAddresses boolean |
|---|
Allows setting partial addresses on a Checkout, skipping the full validation of attributes.
The required attributes are city, province, and country.
Full validation of the addresses is still done at completion time. Defaults to |
customAttributes ShopifyAttributeInput[] |
|---|
A list of extra information that's added to the checkout. The input must not contain more than |
note string |
|---|
The text of an optional note that a shop owner can attach to the checkout. |