Class FieldsListParams
Inheritance
FieldsListParams
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class FieldsListParams : IQueryParamsProvider
Constructors
|
Edit this page
View Source
FieldsListParams(int, int, string?, FieldEntity?, FieldType?)
Declaration
public FieldsListParams(int limit, int offset, string? search, FieldEntity? entity, FieldType? type)
Parameters
Properties
|
Edit this page
View Source
Entity
Declaration
public FieldEntity? Entity { 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
Search
Declaration
public string? Search { get; set; }
Property Value
|
Edit this page
View Source
Type
Declaration
public FieldType? Type { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToQueryParams()
Declaration
public IDictionary<string, string> ToQueryParams()
Returns
Implements