interface InputItemListParams {
    after?: string;
    before?: string;
    limit?: number;
    order?: "asc" | "desc";
}

Hierarchy (view full)

Properties

after?: string
before?: string

An item ID to list items before, used in pagination.

limit?: number
order?: "asc" | "desc"

The order to return the input items in. Default is asc.

  • asc: Return the input items in ascending order.
  • desc: Return the input items in descending order.