Inheritance
System.Object
StringCommentsListParams
Assembly: Crowdin.Api.dll
public class StringCommentsListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
Declaration
public StringCommentsListParams()
|
Improve this Doc
View Source
Declaration
public StringCommentsListParams(int limit, int offset, int? stringId, StringCommentType? type, ISet<IssueType>? issueTypes, IssueStatus? issueStatus, IEnumerable<SortingRule>? orderBy)
Parameters
Type |
Name |
Description |
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<System.Int32> |
stringId |
|
System.Nullable<StringCommentType> |
type |
|
System.Nullable<ISet<IssueType>> |
issueTypes |
|
System.Nullable<IssueStatus> |
issueStatus |
|
System.Nullable<IEnumerable<SortingRule>> |
orderBy |
|
Properties
|
Improve this Doc
View Source
Declaration
public IssueStatus? IssueStatus { get; set; }
Property Value
|
Improve this Doc
View Source
Declaration
public ISet<IssueType> IssueTypes { get; set; }
Property Value
|
Improve this Doc
View Source
Declaration
public int Limit { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Declaration
public int Offset { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Declaration
public IEnumerable<SortingRule>? OrderBy { get; set; }
Property Value
Type |
Description |
System.Nullable<IEnumerable<SortingRule>> |
|
|
Improve this Doc
View Source
Declaration
public int? StringId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
Declaration
public StringCommentType? Type { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Type |
Description |
IDictionary<System.String, System.String> |
|
Implements