Class ProjectMembersListParams
Inheritance
System.Object
ProjectMembersListParams
Assembly: Crowdin.Api.dll
Syntax
public class ProjectMembersListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
ProjectMembersListParams()
Declaration
public ProjectMembersListParams()
|
Improve this Doc
View Source
ProjectMembersListParams(Nullable<String>, Nullable<UserRole>, Nullable<String>, Int32, Int32, Nullable<IEnumerable<SortingRule>>)
Declaration
public ProjectMembersListParams(string? search, UserRole? role, string? languageId, int limit, int offset, IEnumerable<SortingRule>? orderBy = null)
Parameters
Type |
Name |
Description |
System.Nullable<System.String> |
search |
|
System.Nullable<UserRole> |
role |
|
System.Nullable<System.String> |
languageId |
|
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<IEnumerable<SortingRule>> |
orderBy |
|
Properties
|
Improve this Doc
View Source
LanguageId
Declaration
public string? LanguageId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
|
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
OrderBy
Declaration
public IEnumerable<SortingRule>? OrderBy { get; set; }
Property Value
Type |
Description |
System.Nullable<IEnumerable<SortingRule>> |
|
|
Improve this Doc
View Source
Role
Declaration
public UserRole? Role { get; set; }
Property Value
Type |
Description |
System.Nullable<UserRole> |
|
|
Improve this Doc
View Source
Search
Declaration
public string? Search { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
Methods
|
Improve this Doc
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Type |
Description |
IDictionary<System.String, System.String> |
|
Implements