com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: query_header.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.Transaction getPayment();
/**
*
**
* A signed CryptoTransferTransaction to pay the node a fee for handling this query
*
*
* .proto.Transaction payment = 1;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.ResponseType getResponseType();
}