Class FindRefundsResponse
Inherited Members
Namespace: Worldline.Connect.Sdk.V1.Domain
Assembly: Worldline.Connect.Sdk.dll
Syntax
public class FindRefundsResponse
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? |
Refunds
A list of refunds that matched your filter, starting at the given offset and limited to the given limit.
Declaration
public IList<RefundResult> Refunds { get; set; }
Property Value
Type | Description |
---|---|
IList<RefundResult> |
TotalCount
The total number of refunds that matched your filter.
Declaration
public int? TotalCount { get; set; }
Property Value
Type | Description |
---|---|
int? |