Interface ICancelOrderParams

ICancelOrderParams Interface representing the parameters for canceling an order.

const cancelOrderParams: ICancelOrderParams = {
order_id: "123456789"
};
interface ICancelOrderParams {
    order_id: string;
}

Properties

Properties

order_id: string

The unique identifier of the order to be canceled.