Class TmsListParams
Inheritance
TmsListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class TmsListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
TmsListParams()
Declaration
|
Edit this page
View Source
TmsListParams(long?, long?, int, int, IEnumerable<SortingRule>?)
Declaration
public TmsListParams(long? userId, long? groupId, int limit, int offset, IEnumerable<SortingRule>? orderBy = null)
Parameters
Properties
|
Edit this page
View Source
GroupId
Declaration
public long? GroupId { 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
UserId
Declaration
public long? UserId { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements