Class TranslationApprovalsListParams
Inheritance
System.Object
TranslationApprovalsListParams
Assembly: Crowdin.Api.dll
Syntax
public class TranslationApprovalsListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
TranslationApprovalsListParams()
Declaration
public TranslationApprovalsListParams()
|
Improve this Doc
View Source
TranslationApprovalsListParams(Nullable<Int32>, Nullable<String>, Nullable<String>, Nullable<Int32>, Nullable<String>, Nullable<Int32>, Int32, Int32, Nullable<IEnumerable<SortingRule>>)
Declaration
public TranslationApprovalsListParams(int? fileId, string? labelIds, string? excludeLabelIds, int? stringId, string? languageId, int? translationId, int limit, int offset, IEnumerable<SortingRule>? orderBy = null)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int32> |
fileId |
|
System.Nullable<System.String> |
labelIds |
|
System.Nullable<System.String> |
excludeLabelIds |
|
System.Nullable<System.Int32> |
stringId |
|
System.Nullable<System.String> |
languageId |
|
System.Nullable<System.Int32> |
translationId |
|
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<IEnumerable<SortingRule>> |
orderBy |
|
Properties
|
Improve this Doc
View Source
ExcludeLabelIds
Declaration
public string? ExcludeLabelIds { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
|
Improve this Doc
View Source
FileId
Declaration
public int? FileId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
LabelIds
Declaration
public string? LabelIds { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
|
Improve this Doc
View Source
LanguageId
Declaration
public string? LanguageId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
|
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
StringId
Declaration
public int? StringId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
TranslationId
Declaration
public int? TranslationId { 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