com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponseOrBuilder 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
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_get_stakers.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface CryptoGetStakersResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CryptoGetStakersResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof,
* or both, or neither
*
*
* .proto.ResponseHeader header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof,
* or both, or neither
*
*
* .proto.ResponseHeader header = 1;
* @return The header.
*/
com.hedera.hashgraph.sdk.proto.ResponseHeader getHeader();
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof,
* or both, or neither
*
*
* .proto.ResponseHeader header = 1;
*/
com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* List of accounts proxy staking to this account, and the amount each is currently proxy
* staking
*
*
* .proto.AllProxyStakers stakers = 3;
* @return Whether the stakers field is set.
*/
boolean hasStakers();
/**
*
**
* List of accounts proxy staking to this account, and the amount each is currently proxy
* staking
*
*
* .proto.AllProxyStakers stakers = 3;
* @return The stakers.
*/
com.hedera.hashgraph.sdk.proto.AllProxyStakers getStakers();
/**
*
**
* List of accounts proxy staking to this account, and the amount each is currently proxy
* staking
*
*
* .proto.AllProxyStakers stakers = 3;
*/
com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder getStakersOrBuilder();
}