org.hyperledger.fabric.protos.peer.ProposalOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/proposal.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer;
public interface ProposalOrBuilder extends
// @@protoc_insertion_point(interface_extends:protos.Proposal)
com.google.protobuf.MessageOrBuilder {
/**
*
* The header of the proposal. It is the bytes of the Header
*
*
* bytes header = 1 [json_name = "header"];
* @return The header.
*/
com.google.protobuf.ByteString getHeader();
/**
*
* The payload of the proposal as defined by the type in the proposal
* header.
*
*
* bytes payload = 2 [json_name = "payload"];
* @return The payload.
*/
com.google.protobuf.ByteString getPayload();
/**
*
* Optional extensions to the proposal. Its content depends on the Header's
* type field. For the type CHAINCODE, it might be the bytes of a
* ChaincodeAction message.
*
*
* bytes extension = 3 [json_name = "extension"];
* @return The extension.
*/
com.google.protobuf.ByteString getExtension();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy