Class FindPaymentsResponse
Inherited Members
Namespace: Ingenico.Connect.Sdk.Domain.Payment
Assembly: connect-sdk-dotnet.dll
Syntax
public class FindPaymentsResponse
Properties
Limit
The limit you used in the request.
Declaration
public int? Limit { get; set; }
Property Value
Type | Description |
---|---|
int? |
Offset
The offset you used in the request.
Declaration
public int? Offset { get; set; }
Property Value
Type | Description |
---|---|
int? |
Payments
A list of payments that matched your filter, starting at the given offset and limited to the given limit.
Declaration
public IList<Payment> Payments { get; set; }
Property Value
Type | Description |
---|---|
IList<Payment> |
TotalCount
The total number of payments that matched your filter.
Declaration
public int? TotalCount { get; set; }
Property Value
Type | Description |
---|---|
int? |