Class TermsListParams
Inheritance
TermsListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class TermsListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
TermsListParams()
Declaration
|
Edit this page
View Source
TermsListParams(int, int, long?, string?, long?, long?, string?, IEnumerable<SortingRule>?)
Declaration
public TermsListParams(int limit, int offset, long? userId, string? languageId, long? translationOfTermId, long? conceptId, string? croql, IEnumerable<SortingRule>? orderBy)
Parameters
Properties
|
Edit this page
View Source
ConceptId
Declaration
public long? ConceptId { get; set; }
Property Value
|
Edit this page
View Source
CroQL
Declaration
public string? CroQL { get; set; }
Property Value
|
Edit this page
View Source
LanguageId
Declaration
public string? LanguageId { 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
TranslationOfTermId
Declaration
public long? TranslationOfTermId { 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