Interface AccountTransactionsRequestParams

    • Method Detail

      • ledgerIndexMin

        @Deprecated
        @Auxiliary
        Optional<LedgerIndex> ledgerIndexMin()
        Deprecated.
        ledger_index_min field should be specified by ledgerIndexMinimum()
        The earliest ledger to include transactions from. A value of -1 instructs the server to use the earliest validated ledger version available.
        Returns:
        A LedgerIndex with a default of empty.
      • ledgerIndexMax

        @Deprecated
        @Auxiliary
        Optional<LedgerIndex> ledgerIndexMax()
        Deprecated.
        ledger_index_max field should be specified by ledgerIndexMaximum().
        The most recent ledger to include transactions from. A value of -1 instructs the server to use the most recent validated ledger version available.
        Returns:
        A LedgerIndex with a default of empty.
      • ledgerIndexMinimum

        @Default
        @Nullable
        default LedgerIndexBound ledgerIndexMinimum()
        The earliest ledger to include transactions from. A value of -1 instructs the server to use the earliest validated ledger version available.
        Returns:
        A LedgerIndexBound with a default of empty.
      • ledgerIndexMaximum

        @Default
        @Nullable
        default LedgerIndexBound ledgerIndexMaximum()
        The most recent ledger to include transactions from. A value of -1 instructs the server to use the most recent validated ledger version available.
        Returns:
        A LedgerIndexBound with a default of empty.
      • ledgerHash

        @Deprecated
        @Auxiliary
        Optional<Hash256> ledgerHash()
        Deprecated.
        Ledger hash should be specified in ledgerSpecifier().
        Return transactions from the ledger with this hash only.
        Returns:
        An optionally-present Hash256 containing the ledger hash.
      • ledgerIndex

        @Deprecated
        @Auxiliary
        Optional<LedgerIndex> ledgerIndex()
        Deprecated.
        Ledger index and any shortcut values should be specified in ledgerSpecifier().
        Return transactions from the ledger with this index only.
        Returns:
        A LedgerIndex containing the ledger index, defaults to "current".
      • binary

        @Derived
        default boolean binary()
        Whether or not to return transactions as JSON or binary-encoded hex strings. Always false.
        Returns:
        Always false.
      • forward

        @Default
        default boolean forward()
        If set to true, returns values indexed with the oldest ledger first. Otherwise, the results are indexed with the newest ledger first. (Each page of results may not be internally ordered, but the pages are overall ordered.)
        Returns:
        true if values should be indexed with the oldest ledger first, otherwise false. Defaults to false.
      • limit

        Optional<com.google.common.primitives.UnsignedInteger> limit()
        Limit the number of transactions to retrieve. The server is not required to honor this value.
        Returns:
        An optionally-present UnsignedInteger representing the number of transactions to return.
      • marker

        Optional<Marker> marker()
        Value from a previous paginated response. Resume retrieving data where that response left off. This value is stable even if there is a change in the server's range of available ledgers.
        Returns:
        An optionally-present String containing the marker.