1
2
3
4
5
6
7
8
9
10
11
12
13
14
| global class DagsSearchOptions {
| global String filterGroup;
| global String lastModifiedAfter;
| global String lastModifiedBefore;
| global String orderBy;
| global String page;
| global Integer pageSize;
| global String q;
| global String sortParam;
| global List<String> status;
| global DagsSearchOptions() { }
| global Object clone() { }
|
| }
|
|