OBJECT

ApplePayPaymentAttachment

An Apple Pay payment attachment

link GraphQL Schema definition

  • type ApplePayPaymentAttachment {
  • # Set of line items that explain recurring payments and additional charges and
  • # discounts
  • lineItems: [ApplePayLineItemAttachmentType!]!
  • # Line item representing the total for the payment
  • total: ApplePayLineItemAttachmentType!
  • # Merchant’s two-letter ISO 3166 country code
  • currencyCode: String!
  • # Available shipping methods. The Apple Pay payment sheet displays the first
  • # shipping method from the array as the default shipping method
  • shippingMethods: [ApplePayShippingMethodAttachmentType!]!
  • # Billing information required from the user to process the transaction
  • billingContactFields: [ApplePayContactField!]!
  • # Shipping information required from the user to process the transaction
  • shippingContactFields: [ApplePayContactField!]!
  • }