Class AdvancedSearchRequest
Class with more advanced search parameters.
Inherited Members
Namespace: MercadoPago.Client
Assembly: MercadoPago.dll
Syntax
public class AdvancedSearchRequest : SearchRequest
Fields
| Edit this page View SourceBeginDateParam
Begin date param name.
Declaration
public const string BeginDateParam = "begin_date"
Field Value
Type | Description |
---|---|
string |
CriteriaParam
Criteria param name.
Declaration
public const string CriteriaParam = "criteria"
Field Value
Type | Description |
---|---|
string |
EndDateParam
End date param name.
Declaration
public const string EndDateParam = "end_date"
Field Value
Type | Description |
---|---|
string |
RangeParam
Range param name.
Declaration
public const string RangeParam = "range"
Field Value
Type | Description |
---|---|
string |
SortParam
Sort param name.
Declaration
public const string SortParam = "sort"
Field Value
Type | Description |
---|---|
string |
Properties
| Edit this page View SourceBeginDate
Begin date of the range.
Declaration
public DateTime? BeginDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime? |
Criteria
Order the items desc
or asc
.
Declaration
public string Criteria { get; set; }
Property Value
Type | Description |
---|---|
string |
EndDate
End date of the range.
Declaration
public DateTime? EndDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime? |
Range
Which property to apply range.
Declaration
public string Range { get; set; }
Property Value
Type | Description |
---|---|
string |
Sort
Which property to order.
Declaration
public string Sort { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
| Edit this page View SourceGetParameters()
Create the search params from properties.
Declaration
public override IDictionary<string, object> GetParameters()
Returns
Type | Description |
---|---|
IDictionary<string, object> | The search params. |