Class EnterpriseUsersListParams
Inheritance
EnterpriseUsersListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class EnterpriseUsersListParams : IQueryParamsProvider
Properties
|
Edit this page
View Source
GroupIds
Declaration
public IEnumerable<long>? GroupIds { get; set; }
Property Value
|
Edit this page
View Source
LanguageIds
Declaration
public IEnumerable<string>? LanguageIds { get; set; }
Property Value
|
Edit this page
View Source
LastSeenFrom
Declaration
public DateTimeOffset? LastSeenFrom { get; set; }
Property Value
|
Edit this page
View Source
LastSeenTo
Declaration
public DateTimeOffset? LastSeenTo { 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
OrganizationRoles
Declaration
public IEnumerable<OrganizationRole>? OrganizationRoles { get; set; }
Property Value
|
Edit this page
View Source
ProjectIds
Declaration
public IEnumerable<long>? ProjectIds { get; set; }
Property Value
|
Edit this page
View Source
ProjectRoles
Declaration
public IEnumerable<ProjectRole>? ProjectRoles { get; set; }
Property Value
|
Edit this page
View Source
Search
Declaration
public string? Search { get; set; }
Property Value
|
Edit this page
View Source
Status
Declaration
public UserStatus? Status { get; set; }
Property Value
|
Edit this page
View Source
TeamId
Declaration
public long? TeamId { get; set; }
Property Value
|
Edit this page
View Source
TwoFactor
Declaration
public UserTwoFactorStatus? TwoFactor { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements