Class FindPaymentsParams
Query parameters for Find payments
Inherited Members
Namespace: Worldline.Connect.Sdk.V1.Merchant.Payments
Assembly: Worldline.Connect.Sdk.dll
Syntax
public class FindPaymentsParams : AbstractParamRequest
Properties
HostedCheckoutId
Your hosted checkout identifier to filter on.
Declaration
public string HostedCheckoutId { get; set; }
Property Value
Type | Description |
---|---|
string |
Limit
The maximum number of payments to return, with a maximum of 100. If omitted, the limit will be 10.
Declaration
public int? Limit { get; set; }
Property Value
Type | Description |
---|---|
int? |
MerchantOrderId
Your order identifier to filter on.
Declaration
public long? MerchantOrderId { get; set; }
Property Value
Type | Description |
---|---|
long? |
MerchantReference
Your unique transaction reference to filter on. The maximum length is 52 characters for payments that are processed by WL Online Payment Acceptance platform.
Declaration
public string MerchantReference { get; set; }
Property Value
Type | Description |
---|---|
string |
Offset
The zero-based index of the first payment in the result. If omitted, the offset will be 0.
Declaration
public int? Offset { get; set; }
Property Value
Type | Description |
---|---|
int? |
Methods
ToRequestParameters()
Declaration
public override IEnumerable<RequestParam> ToRequestParameters()
Returns
Type | Description |
---|---|
IEnumerable<RequestParam> |