Class DocumentHistorySearchResult
Inheritance
DocumentHistorySearchResult
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class DocumentHistorySearchResult
Properties
The search execution time in milliseconds.
Declaration
[JsonProperty("elapsedMilliseconds", Required = Required.Always)]
public long ElapsedMilliseconds { get; set; }
Property Value
The upper bound of the total number of matching documents.
Declaration
[JsonProperty("maxResults", Required = Required.Always)]
public long MaxResults { get; set; }
Property Value
An optional token to access the next page of results for those endpoints that support backend scrolling logic.
Declaration
[JsonProperty("pageToken", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string PageToken { get; set; }
Property Value
Declaration
[JsonProperty("results", Required = Required.Always)]
[Required]
public ICollection<DocumentHistory> Results { get; set; }
Property Value
Methods
Declaration
public static DocumentHistorySearchResult FromJson(string data)
Parameters
Returns