Interface TransactionRecordEntryOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
TransactionRecordEntry, TransactionRecordEntry.Builder

@Generated public interface TransactionRecordEntryOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    * A node identifier.<br/> This identifier is the node, as known to the address book, that submitted the transaction for consensus.
    * An Account identifier for the payer for the transaction.
    * A transaction record for the transaction.
    boolean
    * An Account identifier for the payer for the transaction.
    boolean
    * A transaction record for the transaction.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • getNodeId

      long getNodeId()
       *
       A node identifier.<br/>
       This identifier is the node, as known to the address book, that
       submitted the transaction for consensus.
       <p>
       This SHALL be a whole number.
       
      int64 node_id = 1;
      Returns:
      The nodeId.
    • hasPayerAccountId

      boolean hasPayerAccountId()
       *
       An Account identifier for the payer for the transaction.
       <p>
       This MAY be the same as the account ID within the Transaction ID of the
       record, or it MAY be the account ID of the node that submitted the
       transaction to consensus if the account ID in the Transaction ID was
       not able to pay.
       
      .proto.AccountID payer_account_id = 2;
      Returns:
      Whether the payerAccountId field is set.
    • getPayerAccountId

      AccountID getPayerAccountId()
       *
       An Account identifier for the payer for the transaction.
       <p>
       This MAY be the same as the account ID within the Transaction ID of the
       record, or it MAY be the account ID of the node that submitted the
       transaction to consensus if the account ID in the Transaction ID was
       not able to pay.
       
      .proto.AccountID payer_account_id = 2;
      Returns:
      The payerAccountId.
    • hasTransactionRecord

      boolean hasTransactionRecord()
       *
       A transaction record for the transaction.
       
      .proto.TransactionRecord transaction_record = 3;
      Returns:
      Whether the transactionRecord field is set.
    • getTransactionRecord

      TransactionRecord getTransactionRecord()
       *
       A transaction record for the transaction.
       
      .proto.TransactionRecord transaction_record = 3;
      Returns:
      The transactionRecord.