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