Class UserTasksListParams
Inheritance
UserTasksListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class UserTasksListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
UserTasksListParams()
Declaration
public UserTasksListParams()
|
Edit this page
View Source
UserTasksListParams(int, int, TaskStatus?, bool?, IEnumerable<SortingRule>?)
Declaration
public UserTasksListParams(int limit, int offset, TaskStatus? status, bool? isArchived, IEnumerable<SortingRule>? orderBy)
Parameters
Properties
|
Edit this page
View Source
IsArchived
Declaration
public bool? IsArchived { get; set; }
Property Value
|
Edit this page
View Source
Limit
Declaration
public int Limit { get; set; }
Property Value
|
Edit this page
View Source
Offset
Declaration
public int Offset { get; set; }
Property Value
|
Edit this page
View Source
OrderBy
Declaration
public IEnumerable<SortingRule>? OrderBy { get; set; }
Property Value
|
Edit this page
View Source
Status
Declaration
public TaskStatus? Status { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements