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