Class Transaction.ListOptions

java.lang.Object
com.idanalyzer.Transaction.ListOptions
Enclosing class:
Transaction

public static class Transaction.ListOptions extends Object
Filters for listing/exporting transactions.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
    Upper bound (inclusive) on creation time; only applied when greater than 0.
    int
    Lower 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.
    int
    Maximum number of transactions to return.
    int
    Number of transactions to skip (for pagination).
    int
    Sort order for the results.
    Filter by KYC profile id; applied when non-empty.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an options object with default values that can be overridden before use.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • order

      public int order
      Sort order for the results.
    • limit

      public int limit
      Maximum number of transactions to return.
    • offset

      public int offset
      Number of transactions to skip (for pagination).
    • createdAtMin

      public int createdAtMin
      Lower bound (inclusive) on creation time; only applied when greater than 0.
    • createdAtMax

      public int createdAtMax
      Upper bound (inclusive) on creation time; only applied when greater than 0.
    • customData

      public String customData
      Filter by the custom data stored with the transaction; applied when non-empty.
    • decision

      public String decision
      Filter by decision ("accept"/"review"/"reject"); applied when non-empty.
    • docupass

      public String docupass
      Filter by associated Docupass reference; applied when non-empty.
    • profileId

      public String 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.