Class IssuesListParams
Inheritance
System.Object
IssuesListParams
Assembly: Crowdin.Api.dll
Syntax
public class IssuesListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
IssuesListParams()
Declaration
public IssuesListParams()
|
Improve this Doc
View Source
IssuesListParams(Int32, Int32, Nullable<IssueType>, Nullable<IssueStatus>)
Declaration
public IssuesListParams(int limit, int offset, IssueType? type, IssueStatus? status)
Parameters
Type |
Name |
Description |
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<IssueType> |
type |
|
System.Nullable<IssueStatus> |
status |
|
Properties
|
Improve this Doc
View Source
Limit
Declaration
public int Limit { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Offset
Declaration
public int Offset { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Status
Declaration
public IssueStatus? Status { get; set; }
Property Value
|
Improve this Doc
View Source
Type
Declaration
public IssueType? Type { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Type |
Description |
IDictionary<System.String, System.String> |
|
Implements