Class GlossariesListParams
Inheritance
GlossariesListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class GlossariesListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
GlossariesListParams()
Declaration
public GlossariesListParams()
|
Edit this page
View Source
GlossariesListParams(int, int, long?, long?, IEnumerable<SortingRule>?)
Declaration
public GlossariesListParams(int limit, int offset, long? userId, long? groupId, IEnumerable<SortingRule>? orderBy)
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