// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: get_by_key.proto
package com.hederahashgraph.api.proto.java;
public interface GetByKeyQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.GetByKeyQuery)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
com.hederahashgraph.api.proto.java.QueryHeader getHeader();
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* The key to search for. It must not contain a contractID nor a ThresholdSignature.
*
*
* .proto.Key key = 2;
* @return Whether the key field is set.
*/
boolean hasKey();
/**
*
**
* The key to search for. It must not contain a contractID nor a ThresholdSignature.
*
*
* .proto.Key key = 2;
* @return The key.
*/
com.hederahashgraph.api.proto.java.Key getKey();
/**
*
**
* The key to search for. It must not contain a contractID nor a ThresholdSignature.
*
*
* .proto.Key key = 2;
*/
com.hederahashgraph.api.proto.java.KeyOrBuilder getKeyOrBuilder();
}