Interface IGetOrderStatusParams

IGetOrderStatusParams Interface representing the parameters for getting the status of an order.

const getOrderStatusParams: IGetOrderStatusParams = {
order_id: "123456789"
};
const getOrderStatusParams: IGetOrderStatusParams = {
order_id: ["123456789", "987654321"]
};
interface IGetOrderStatusParams {
    order_id: string | string[];
}

Properties

Properties

order_id: string | string[]

The unique identifier(s) of the order(s) to get the status for.