interface FileListParams {
    after?: string;
    limit?: number;
    order?: "asc" | "desc";
    purpose?: string;
}

Hierarchy (view full)

Properties

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

Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.

purpose?: string

Only return files with the given purpose.