@paysafe/paysafe-wallet-saas-web
    Preparing search index...

    Interface WalletCheckoutSessionResponse

    interface WalletCheckoutSessionResponse {
        amount?: number;
        brand?: string;
        createdAt?: string;
        currencyCode?: string;
        expiresAt: string;
        lineItems: WalletCheckoutLineItem[];
        merchantRefNum?: string;
        payment?: WalletCheckoutSessionPayment;
        paymentBoundAt?: string;
        recipient?: WalletCheckoutRecipient;
        redirectUrl?: string;
        returnUrl: string;
        secureCode: string;
        sender: WalletCheckoutSender;
        sessionId: string;
        status?: WalletCheckoutSessionStatus;
        walletCheckoutPageUrl?: string;
    }
    Index

    Properties

    amount?: number

    The amount to be transferred to the recipient in minor units.

    1000
    
    brand?: string

    The brand of the recipient.

    createdAt?: string

    The session creation timestamp.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2026-05-08T14:43:33Z"
    
    currencyCode?: string

    Currency alphabetic code as specified by ISO 4217.

    "EUR"
    
    expiresAt: string

    The session expiration timestamp.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2026-05-08T14:43:33Z"
    
    lineItems: WalletCheckoutLineItem[]

    Line items.

    merchantRefNum?: string

    The merchant reference number of the checkout session.

    payment?: WalletCheckoutSessionPayment

    Payment details.

    paymentBoundAt?: string

    The timestamp when the payment is bound.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2026-05-08T14:43:33Z"
    
    recipient?: WalletCheckoutRecipient

    Payment recipient.

    redirectUrl?: string

    The url where the wallet checkout flow starts.

    returnUrl: string

    The redirect URL of the session.

    secureCode: string

    The secure code for the sessionId.

    sender: WalletCheckoutSender

    Payment sender.

    sessionId: string

    The unique identifier of the checkout session.

    Checkout session status.

    walletCheckoutPageUrl?: string

    Thе url where the user is being redirected after login.