Class GlossariesListParams
Inheritance
System.Object
GlossariesListParams
Assembly: Crowdin.Api.dll
Syntax
public class GlossariesListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
GlossariesListParams()
Declaration
public GlossariesListParams()
|
Improve this Doc
View Source
GlossariesListParams(Int32, Int32, Nullable<Int32>, Nullable<Int32>, Nullable<IEnumerable<SortingRule>>)
Declaration
public GlossariesListParams(int limit, int offset, int? userId, int? groupId, IEnumerable<SortingRule>? orderBy)
Parameters
Type |
Name |
Description |
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<System.Int32> |
userId |
|
System.Nullable<System.Int32> |
groupId |
|
System.Nullable<IEnumerable<SortingRule>> |
orderBy |
|
Properties
|
Improve this Doc
View Source
GroupId
Declaration
public int? GroupId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
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
UserId
Declaration
public int? UserId { 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