INPUT_OBJECT

CheckoutAttributesUpdateInput

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

link GraphQL Schema definition

  • input CheckoutAttributesUpdateInput {
  • # The text of an optional note that a shop owner can attach to the checkout.
  • note: String
  • # A list of extra information that is added to the checkout.
  • customAttributes: [AttributeInput!]
  • # 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 complete time.
  • allowPartialAddresses: Boolean
  • }