Interface CancelParams

Interface representing the parameters for Checkout.cancel

interface CancelParams {
    provider: Web3Provider;
    orderIds: string[];
    overrides?: CancelOverrides;
}

Properties

provider: Web3Provider

The provider to use for the cancel.

orderIds: string[]

The order IDs to cancel.

overrides?: CancelOverrides

The overrides to use for the cancel. Currently only processes the first order in the array until batch processing is supported.