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