The details of the checkout product.

interface ProductDetails {
    description?: string;
    imageURI?: string;
    name: string;
    successText?: string;
    successURL?: string;
}

Hierarchy

Properties

description?: string = ...

The description of the checkout product.

imageURI?: string = ...

The image URI of the checkout product. Can be an URL, can be a data URI (e.g. inline Base64).

name: string = ...

The name of the checkout product.

successText?: string = ...

Text shows on the success button in the final screen of the checkout.

successURL?: string = ...

The URL to redirect to when the success button is clicked.

Generated using TypeDoc