Inheritance
StringCommentsListParams
Assembly: Crowdin.Api.dll
[PublicAPI]
public class StringCommentsListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
Declaration
public StringCommentsListParams()
|
Edit this page
View Source
Declaration
public StringCommentsListParams(int limit, int offset, long? stringId, StringCommentType? type, ISet<IssueType>? issueTypes, IssueStatus? issueStatus, IEnumerable<SortingRule>? orderBy)
Parameters
Properties
|
Edit this page
View Source
Declaration
public IssueStatus? IssueStatus { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public ISet<IssueType> IssueTypes { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public int Limit { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public int Offset { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public IEnumerable<SortingRule>? OrderBy { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public long? StringId { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public StringCommentType? Type { get; set; }
Property Value
Methods
|
Edit this page
View Source
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements