org.hyperledger.fabric.protos.gateway.EvaluateResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-protos Show documentation
Show all versions of fabric-protos Show documentation
PROTO library for fabric-protos
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: gateway/gateway.proto
package org.hyperledger.fabric.protos.gateway;
public interface EvaluateResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:gateway.EvaluateResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The response that is returned by the transaction function, as defined
* in peer/proposal_response.proto.
*
*
* .protos.Response result = 1 [json_name = "result"];
* @return Whether the result field is set.
*/
boolean hasResult();
/**
*
* The response that is returned by the transaction function, as defined
* in peer/proposal_response.proto.
*
*
* .protos.Response result = 1 [json_name = "result"];
* @return The result.
*/
org.hyperledger.fabric.protos.peer.Response getResult();
/**
*
* The response that is returned by the transaction function, as defined
* in peer/proposal_response.proto.
*
*
* .protos.Response result = 1 [json_name = "result"];
*/
org.hyperledger.fabric.protos.peer.ResponseOrBuilder getResultOrBuilder();
}