-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesListRequest.ts
More file actions
40 lines (38 loc) · 869 Bytes
/
FilesListRequest.ts
File metadata and controls
40 lines (38 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Humanloop from "../../../../index";
/**
* @example
* {}
*/
export interface FilesListRequest {
/**
* Page offset for pagination.
*/
page?: number;
/**
* Page size for pagination. Number of files to fetch.
*/
size?: number;
/**
* Case-insensitive filter for file name.
*/
name?: string;
/**
* List of file types to filter for.
*/
type?: Humanloop.FileType | Humanloop.FileType[];
/**
* Case-sensitive filter for files with a deployment in the specified environment. Requires the environment name.
*/
environment?: string;
/**
* Field to sort files by
*/
sortBy?: Humanloop.ProjectSortBy;
/**
* Direction to sort by.
*/
order?: Humanloop.SortOrder;
}