Class LanguageTranslationsListParams
Inheritance
System.Object
LanguageTranslationsListParams
Assembly: Crowdin.Api.dll
Syntax
public class LanguageTranslationsListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
LanguageTranslationsListParams()
Declaration
public LanguageTranslationsListParams()
|
Improve this Doc
View Source
LanguageTranslationsListParams(Nullable<String>, Nullable<String>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<String>, Nullable<Boolean>, Int32, Int32, Nullable<IEnumerable<SortingRule>>)
Declaration
public LanguageTranslationsListParams(string? stringIds, string? labelIds, int? fileId, int? branchId, int? directoryId, string? croQl, bool? denormalizePlaceholders, int limit, int offset, IEnumerable<SortingRule>? orderBy = null)
Parameters
Type |
Name |
Description |
System.Nullable<System.String> |
stringIds |
|
System.Nullable<System.String> |
labelIds |
|
System.Nullable<System.Int32> |
fileId |
|
System.Nullable<System.Int32> |
branchId |
|
System.Nullable<System.Int32> |
directoryId |
|
System.Nullable<System.String> |
croQl |
|
System.Nullable<System.Boolean> |
denormalizePlaceholders |
|
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<IEnumerable<SortingRule>> |
orderBy |
|
Properties
|
Improve this Doc
View Source
BranchId
Declaration
public int? BranchId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
CroQL
Declaration
public string? CroQL { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
|
Improve this Doc
View Source
DenormalizePlaceholders
Declaration
public bool? DenormalizePlaceholders { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Improve this Doc
View Source
DirectoryId
Declaration
public int? DirectoryId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
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
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
StringIds
Declaration
public string? StringIds { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
Methods
|
Improve this Doc
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Type |
Description |
IDictionary<System.String, System.String> |
|
Implements