Interface OrderListQueryParam

interface OrderListQueryParam {
    product_id?: string;
    status?: ("all" | OrderStatus)[];
}

Hierarchy

  • Pagination
    • OrderListQueryParam

Properties

product_id?: string

Only list orders for a specific product.

status?: ("all" | OrderStatus)[]

Limit list of orders to these statuses. Passing "all" returns orders of all statuses. Default: [open, pending, active]