Class SearchRequest
Search APIs parameters.
Inherited Members
Namespace: MercadoPago.Client
Assembly: MercadoPago.dll
Syntax
public class SearchRequest
Fields
| Edit this page View SourceLimitParam
Limit param name.
Declaration
public const string LimitParam = "limit"
Field Value
Type | Description |
---|---|
string |
OffsetParam
Offset param name.
Declaration
public const string OffsetParam = "offset"
Field Value
Type | Description |
---|---|
string |
Properties
| Edit this page View SourceFilters
Search filter parameters.
Declaration
public IDictionary<string, object> Filters { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |
Limit
Limit of items per page.
Declaration
public int? Limit { get; set; }
Property Value
Type | Description |
---|---|
int? |
Offset
Position where starts the search.
Declaration
public int? Offset { get; set; }
Property Value
Type | Description |
---|---|
int? |
Methods
| Edit this page View SourceGetParameters()
Create the search params from properties.
Declaration
public virtual IDictionary<string, object> GetParameters()
Returns
Type | Description |
---|---|
IDictionary<string, object> | The search params. |