Payment method information.

interface ShopifyPaymentMethod {
    details: Record<string, null | string>;
    type: string;
}

Properties

Properties

details: Record<string, null | string>

Additional details about the payment method. The keys and values depend on the payment type.

type: string

The payment method type (e.g., "CREDIT_CARD", "DEBIT_CARD", "DIRECT").