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

Hierarchy (view full)

Properties

after?: string
before?: string

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

include?: ResponseIncludable[]

Additional fields to include in the response. See the include parameter for Response creation above for more information.

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.