Class LanguageTranslationsListParams
Inheritance
LanguageTranslationsListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class LanguageTranslationsListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
LanguageTranslationsListParams()
Declaration
public LanguageTranslationsListParams()
|
Edit this page
View Source
LanguageTranslationsListParams(string?, string?, long?, long?, long?, string?, bool?, int, int, IEnumerable<SortingRule>?)
Declaration
public LanguageTranslationsListParams(string? stringIds, string? labelIds, long? fileId, long? branchId, long? directoryId, string? croQl, bool? denormalizePlaceholders, int limit, int offset, IEnumerable<SortingRule>? orderBy = null)
Parameters
Properties
|
Edit this page
View Source
BranchId
Declaration
public long? BranchId { get; set; }
Property Value
|
Edit this page
View Source
CroQL
Declaration
public string? CroQL { get; set; }
Property Value
|
Edit this page
View Source
DenormalizePlaceholders
Declaration
public bool? DenormalizePlaceholders { get; set; }
Property Value
|
Edit this page
View Source
DirectoryId
Declaration
public long? DirectoryId { 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
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
StringIds
Declaration
public string? StringIds { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements