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