Order Authorize Response Payment Source

November 13, 2025 ยท View on GitHub

The payment source used to fund the payment.

Structure

OrderAuthorizeResponsePaymentSource

Fields

NameTypeTagsDescriptionGetterSetter
CardCardResponseOptionalThe payment card to use to fund a payment. Card can be a credit or debit card.CardResponse getCard()setCard(CardResponse card)
PaypalPaypalWalletResponseOptionalThe PayPal Wallet response.PaypalWalletResponse getPaypal()setPaypal(PaypalWalletResponse paypal)
ApplePayApplePayPaymentObjectOptionalInformation needed to pay using ApplePay.ApplePayPaymentObject getApplePay()setApplePay(ApplePayPaymentObject applePay)
GooglePayGooglePayWalletResponseOptionalGoogle Pay Wallet payment data.GooglePayWalletResponse getGooglePay()setGooglePay(GooglePayWalletResponse googlePay)
VenmoVenmoWalletResponseOptionalVenmo wallet response.VenmoWalletResponse getVenmo()setVenmo(VenmoWalletResponse venmo)

Example (as JSON)

{
  "card": {
    "name": "name6",
    "last_digits": "last_digits0",
    "brand": "CB_NATIONALE",
    "available_networks": [
      "DELTA"
    ],
    "type": "UNKNOWN"
  },
  "paypal": {
    "email_address": "email_address0",
    "account_id": "account_id4",
    "account_status": "VERIFIED",
    "name": {
      "given_name": "given_name2",
      "surname": "surname8"
    },
    "phone_type": "FAX"
  },
  "apple_pay": {
    "id": "id0",
    "token": "token6",
    "name": "name0",
    "email_address": "email_address8",
    "phone_number": {
      "national_number": "national_number6"
    }
  },
  "google_pay": {
    "name": "name8",
    "email_address": "email_address6",
    "phone_number": {
      "country_code": "country_code2",
      "national_number": "national_number6"
    },
    "card": {
      "name": "name6",
      "last_digits": "last_digits0",
      "type": "UNKNOWN",
      "brand": "CB_NATIONALE",
      "billing_address": {
        "address_line_1": "address_line_12",
        "address_line_2": "address_line_28",
        "admin_area_2": "admin_area_28",
        "admin_area_1": "admin_area_14",
        "postal_code": "postal_code0",
        "country_code": "country_code8"
      }
    }
  },
  "venmo": {
    "email_address": "email_address4",
    "account_id": "account_id8",
    "user_name": "user_name2",
    "name": {
      "given_name": "given_name2",
      "surname": "surname8"
    },
    "phone_number": {
      "national_number": "national_number6"
    }
  }
}