Class CommentSearchRequest
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class CommentSearchRequest
Properties
Ascending
If set to true, the result set will be sorted in an ascending order based on time of when which comment was originally created, replies will be always in descending order.
If false, the result set will be sorted in a descending order of when which comment was originally created.
Declaration
[JsonProperty("ascending", Required = Required.Always)]
public bool Ascending { get; set; }
Property Value
bool |
DebugMode
Enable debug mode: additional debug information regarding the query execution and reason of the matched documents are returned in the CommentSearchResult.
Warning! It severely affects performance.
Declaration
[JsonProperty("debugMode", Required = Required.Always)]
public bool DebugMode { get; set; }
Property Value
bool |
Limit
Limits the document count of the result set. Defaults to 30.
Declaration
[JsonProperty("limit", Required = Required.Always)]
public int Limit { get; set; }
Property Value
int |
PageToken
The token used to retrieve the next page of results. It must be null on first request and only filled with the returned pageToken to request next page of results.
Declaration
[JsonProperty("pageToken", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string PageToken { get; set; }
Property Value
string |
Methods
FromJson(string)
Declaration
public static CommentSearchRequest FromJson(string data)
Parameters
string data |
Returns
CommentSearchRequest |