Class SurveyResponseMessage

java.lang.Object
org.stellar.sdk.xdr.SurveyResponseMessage
All Implemented Interfaces:
XdrElement

public class SurveyResponseMessage extends Object implements XdrElement
SurveyResponseMessage's original definition in the XDR file is:
 struct SurveyResponseMessage
 {
     NodeID surveyorPeerID;
     NodeID surveyedPeerID;
     uint32 ledgerNum;
     SurveyMessageCommandType commandType;
     EncryptedBody encryptedBody;
 };
 
  • Constructor Details

    • SurveyResponseMessage

      public SurveyResponseMessage()
    • SurveyResponseMessage

      public SurveyResponseMessage(NodeID surveyorPeerID, NodeID surveyedPeerID, Uint32 ledgerNum, SurveyMessageCommandType commandType, EncryptedBody encryptedBody)
      Creates a new SurveyResponseMessage instance.
      Parameters:
      surveyorPeerID - the surveyorPeerID field value
      surveyedPeerID - the surveyedPeerID field value
      ledgerNum - the ledgerNum field value
      commandType - the commandType field value
      encryptedBody - the encryptedBody field value
  • Method Details