Interface SubmitMultiSignedResult<TxnType extends Transaction>

    • Method Detail

      • engineResult

        @Deprecated
        @Auxiliary
        default Optional<String> engineResult()
        Deprecated.
        Use result() instead.
        Text result code indicating the preliminary result of the transaction, for example "tesSUCCESS".
        Returns:
        An optionally-present String containing the result of the submission.
      • result

        String result()
        Text result code indicating the preliminary result of the transaction, for example "tesSUCCESS".
        Returns:
        A String containing the result of the submission.
      • engineResultCode

        @Deprecated
        @Auxiliary
        default Optional<String> engineResultCode()
        Deprecated.
        Use resultCode() instead.
        Numeric code indicating the preliminary result of the transaction, directly correlated to engineResult().
        Returns:
        An optionally-present String containing the result code of the submission.
      • resultCode

        Integer resultCode()
        Numeric code indicating the preliminary result of the transaction, directly correlated to engineResult().
        Returns:
        An Integer containing the result code of the submission.
      • engineResultMessage

        @Deprecated
        @Auxiliary
        default Optional<String> engineResultMessage()
        Deprecated.
        Use resultMessage() instead.
        Human-readable explanation of the transaction's preliminary result.
        Returns:
        An optionally-present String containing the result message of the submission.
      • resultMessage

        String resultMessage()
        Human-readable explanation of the transaction's preliminary result.
        Returns:
        A String containing the result message of the submission.
      • transactionBlob

        String transactionBlob()
        The complete transaction in hex String format.
        Returns:
        A hexadecimal encoded String containing the binary encoded transaction that was submitted.