Type Alias CheckoutSessionResponse

CheckoutSessionResponse: {
    fees: string;
    fullPrice: string;
    session?: string;
    transactionId: string;
    url?: string;
}

Type declaration

  • Readonlyfees: string

    Fees of the transaction in cents of the fiat currency.

  • ReadonlyfullPrice: string

    Full price of the transaction in cents of the fiat currency. Equal to the sum of the fiat price and the fees.

  • Optionalsession?: string

    Stripe payment intent session used for embedded checkout. Only present when using Stripe in embedded mode.

  • transactionId: string
  • Optionalurl?: string

    URL to the PSP session checkout page. Undefined if client secret is present.