Interface PaymentResult

Contains the result of a payment request.

interface PaymentResult {
    @type: "paymentResult";
    success?: boolean;
    verification_url: string;
}

Properties

@type: "paymentResult"
success?: boolean

True, if the payment request was successful; otherwise, the verification_url will be non-empty.

verification_url: string

URL for additional payment credentials verification.