Class FieldsListParams
Inheritance
System.Object
FieldsListParams
Assembly: Crowdin.Api.dll
Syntax
public class FieldsListParams : object, IQueryParamsProvider
Constructors
|
Improve this Doc
View Source
FieldsListParams(Int32, Int32, Nullable<String>, Nullable<FieldEntity>, Nullable<FieldType>)
Declaration
public FieldsListParams(int limit, int offset, string? search, FieldEntity? entity, FieldType? type)
Parameters
Type |
Name |
Description |
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<System.String> |
search |
|
System.Nullable<FieldEntity> |
entity |
|
System.Nullable<FieldType> |
type |
|
Properties
|
Improve this Doc
View Source
Entity
Declaration
public FieldEntity? Entity { get; set; }
Property Value
|
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
Search
Declaration
public string? Search { get; set; }
Property Value
Type |
Description |
System.Nullable<System.String> |
|
|
Improve this Doc
View Source
Type
Declaration
public FieldType? Type { 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