Package com.idanalyzer
Class Transaction.ListOptions
java.lang.Object
com.idanalyzer.Transaction.ListOptions
- Enclosing class:
- Transaction
Filters for listing/exporting transactions.
-
Field Summary
FieldsModifier and TypeFieldDescriptionintUpper bound (inclusive) on creation time; only applied when greater than 0.intLower bound (inclusive) on creation time; only applied when greater than 0.Filter by the custom data stored with the transaction; applied when non-empty.Filter by decision ("accept"/"review"/"reject"); applied when non-empty.Filter by associated Docupass reference; applied when non-empty.intMaximum number of transactions to return.intNumber of transactions to skip (for pagination).intSort order for the results.Filter by KYC profile id; applied when non-empty. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an options object with default values that can be overridden before use. -
Method Summary
-
Field Details
-
order
public int orderSort order for the results. -
limit
public int limitMaximum number of transactions to return. -
offset
public int offsetNumber of transactions to skip (for pagination). -
createdAtMin
public int createdAtMinLower bound (inclusive) on creation time; only applied when greater than 0. -
createdAtMax
public int createdAtMaxUpper bound (inclusive) on creation time; only applied when greater than 0. -
customData
Filter by the custom data stored with the transaction; applied when non-empty. -
decision
Filter by decision ("accept"/"review"/"reject"); applied when non-empty. -
docupass
Filter by associated Docupass reference; applied when non-empty. -
profileId
Filter by KYC profile id; applied when non-empty.
-
-
Constructor Details
-
ListOptions
public ListOptions()Creates an options object with default values that can be overridden before use.
-