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