INPUT_OBJECT

CheckoutAttributesUpdateInput

Specifies the fields required to update a checkout's attributes.

link GraphQL Schema definition

1input CheckoutAttributesUpdateInput {
4
2# The text of an optional note that a shop owner can attach to the checkout.
3note: String
7
5# A list of extra information that is added to the checkout.
6customAttributes: [AttributeInput!]
13
8# Allows setting partial addresses on a Checkout, skipping the full validation of
9# attributes.
10# The required attributes are city, province, and country.
11# Full validation of the addresses is still done at complete time.
12allowPartialAddresses: Boolean
14}