zibri
    Preparing search index...

    The data for creating a new payment.

    type PayPalPaymentData = {
        amount: number;
        cancelUrl?: string;
        currencyCode: string;
        returnUrl?: string;
        transactionId: string;
    }
    Index

    Properties

    amount: number

    The amount of the payment.

    cancelUrl?: string

    The url to return to to cancel the payment.

    currencyCode: string

    The currency of the payment.

    returnUrl?: string

    The url to return to to confirm the payment.

    transactionId: string

    The transactionId, used to prevent duplicate payments.