org.hyperledger.fabric.protos.peer.ProposalResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/proposal_response.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer;
public interface ProposalResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:protos.ProposalResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Version indicates message protocol version
*
*
* int32 version = 1 [json_name = "version"];
* @return The version.
*/
int getVersion();
/**
*
* Timestamp is the time that the message
* was created as defined by the sender
*
*
* .google.protobuf.Timestamp timestamp = 2 [json_name = "timestamp"];
* @return Whether the timestamp field is set.
*/
boolean hasTimestamp();
/**
*
* Timestamp is the time that the message
* was created as defined by the sender
*
*
* .google.protobuf.Timestamp timestamp = 2 [json_name = "timestamp"];
* @return The timestamp.
*/
com.google.protobuf.Timestamp getTimestamp();
/**
*
* Timestamp is the time that the message
* was created as defined by the sender
*
*
* .google.protobuf.Timestamp timestamp = 2 [json_name = "timestamp"];
*/
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
/**
*
* A response message indicating whether the
* endorsement of the action was successful
*
*
* .protos.Response response = 4 [json_name = "response"];
* @return Whether the response field is set.
*/
boolean hasResponse();
/**
*
* A response message indicating whether the
* endorsement of the action was successful
*
*
* .protos.Response response = 4 [json_name = "response"];
* @return The response.
*/
org.hyperledger.fabric.protos.peer.Response getResponse();
/**
*
* A response message indicating whether the
* endorsement of the action was successful
*
*
* .protos.Response response = 4 [json_name = "response"];
*/
org.hyperledger.fabric.protos.peer.ResponseOrBuilder getResponseOrBuilder();
/**
*
* The payload of response. It is the bytes of ProposalResponsePayload
*
*
* bytes payload = 5 [json_name = "payload"];
* @return The payload.
*/
com.google.protobuf.ByteString getPayload();
/**
*
* The endorsement of the proposal, basically
* the endorser's signature over the payload
*
*
* .protos.Endorsement endorsement = 6 [json_name = "endorsement"];
* @return Whether the endorsement field is set.
*/
boolean hasEndorsement();
/**
*
* The endorsement of the proposal, basically
* the endorser's signature over the payload
*
*
* .protos.Endorsement endorsement = 6 [json_name = "endorsement"];
* @return The endorsement.
*/
org.hyperledger.fabric.protos.peer.Endorsement getEndorsement();
/**
*
* The endorsement of the proposal, basically
* the endorser's signature over the payload
*
*
* .protos.Endorsement endorsement = 6 [json_name = "endorsement"];
*/
org.hyperledger.fabric.protos.peer.EndorsementOrBuilder getEndorsementOrBuilder();
/**
*
* The chaincode interest derived from simulating the proposal.
*
*
* .protos.ChaincodeInterest interest = 7 [json_name = "interest"];
* @return Whether the interest field is set.
*/
boolean hasInterest();
/**
*
* The chaincode interest derived from simulating the proposal.
*
*
* .protos.ChaincodeInterest interest = 7 [json_name = "interest"];
* @return The interest.
*/
org.hyperledger.fabric.protos.peer.ChaincodeInterest getInterest();
/**
*
* The chaincode interest derived from simulating the proposal.
*
*
* .protos.ChaincodeInterest interest = 7 [json_name = "interest"];
*/
org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder getInterestOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy