interface ApplePayPaymentMethodInfo {
    type: "unknown" | "debit" | "credit" | "prepaid" | "store";
    network?: string;
    displayName?: string;
}

Properties

type: "unknown" | "debit" | "credit" | "prepaid" | "store"

Required: Type of the payment method. One of: "unknown" | "debit" | "credit" | "prepaid" | "store".

network?: string

Optional: The payment network used, when available. Matches the underlying platform's network identifier (e.g., "visa", "masterCard", etc.). Do not rely on presence for business logic; it may be null.

displayName?: string

Optional: Display name of the instrument (e.g., the card's masked label), when available.