Class TranslationApprovalsListParams
Inheritance
TranslationApprovalsListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class TranslationApprovalsListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
TranslationApprovalsListParams()
Declaration
public TranslationApprovalsListParams()
|
Edit this page
View Source
TranslationApprovalsListParams(long?, string?, string?, long?, string?, long?, int, int, IEnumerable<SortingRule>?)
Declaration
public TranslationApprovalsListParams(long? fileId, string? labelIds, string? excludeLabelIds, long? stringId, string? languageId, long? translationId, int limit, int offset, IEnumerable<SortingRule>? orderBy = null)
Parameters
Properties
|
Edit this page
View Source
ExcludeLabelIds
Declaration
public string? ExcludeLabelIds { get; set; }
Property Value
|
Edit this page
View Source
FileId
Declaration
public long? FileId { get; set; }
Property Value
|
Edit this page
View Source
LabelIds
Declaration
public string? LabelIds { 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
StringId
Declaration
public long? StringId { get; set; }
Property Value
|
Edit this page
View Source
TranslationId
Declaration
public long? TranslationId { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements