com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: query_header.proto
package com.hederahashgraph.api.proto.java;
public interface QueryHeaderOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.QueryHeader)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* A signed CryptoTransferTransaction to pay the node a fee for handling this query
*
*
* .proto.Transaction payment = 1;
* @return Whether the payment field is set.
*/
boolean hasPayment();
/**
*
**
* A signed CryptoTransferTransaction to pay the node a fee for handling this query
*
*
* .proto.Transaction payment = 1;
* @return The payment.
*/
com.hederahashgraph.api.proto.java.Transaction getPayment();
/**
*
**
* A signed CryptoTransferTransaction to pay the node a fee for handling this query
*
*
* .proto.Transaction payment = 1;
*/
com.hederahashgraph.api.proto.java.TransactionOrBuilder getPaymentOrBuilder();
/**
*
**
* The requested response, asking for cost, state proof, both, or neither
*
*
* .proto.ResponseType responseType = 2;
* @return The enum numeric value on the wire for responseType.
*/
int getResponseTypeValue();
/**
*
**
* The requested response, asking for cost, state proof, both, or neither
*
*
* .proto.ResponseType responseType = 2;
* @return The responseType.
*/
com.hederahashgraph.api.proto.java.ResponseType getResponseType();
}