Class SearchOptions
public class SearchOptions
- Inheritance
-
SearchOptions
- Inherited Members
Properties
Limit
Number of files to be returned
[JsonProperty("limit")]
public int Limit { get; set; }
Property Value
Offset
Starting position of query
[JsonProperty("offset")]
public int Offset { get; set; }
Property Value
Search
The search string to filter files by
[JsonProperty("search")]
public string Search { get; set; }
Property Value
SortBy
Column to sort by. Can be any colum inside of a FileObject
[JsonProperty("sortBy")]
public SortBy SortBy { get; set; }