java.lang.Object
com.google.protobuf.AbstractMessageLite<Response,Response.Builder>
com.google.protobuf.GeneratedMessageLite<Response,Response.Builder>
com.hedera.hashgraph.sdk.proto.Response
All Implemented Interfaces:
com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, ResponseOrBuilder

@Generated public final class Response extends com.google.protobuf.GeneratedMessageLite<Response,Response.Builder> implements ResponseOrBuilder
 *
 A single query response.

 Each query MUST define its specific response type.<br/>
 Each query response MUST include both the information request and a
 `ResponseHeader`.<br/>
 All possible query response types MUST be listed here in a `oneof`.
 
Protobuf type proto.Response
  • Field Details

    • GETBYKEY_FIELD_NUMBER

      public static final int GETBYKEY_FIELD_NUMBER
      See Also:
    • GETBYSOLIDITYID_FIELD_NUMBER

      public static final int GETBYSOLIDITYID_FIELD_NUMBER
      See Also:
    • CONTRACTCALLLOCAL_FIELD_NUMBER

      public static final int CONTRACTCALLLOCAL_FIELD_NUMBER
      See Also:
    • CONTRACTGETBYTECODERESPONSE_FIELD_NUMBER

      public static final int CONTRACTGETBYTECODERESPONSE_FIELD_NUMBER
      See Also:
    • CONTRACTGETINFO_FIELD_NUMBER

      public static final int CONTRACTGETINFO_FIELD_NUMBER
      See Also:
    • CONTRACTGETRECORDSRESPONSE_FIELD_NUMBER

      public static final int CONTRACTGETRECORDSRESPONSE_FIELD_NUMBER
      See Also:
    • CRYPTOGETACCOUNTBALANCE_FIELD_NUMBER

      public static final int CRYPTOGETACCOUNTBALANCE_FIELD_NUMBER
      See Also:
    • CRYPTOGETACCOUNTRECORDS_FIELD_NUMBER

      public static final int CRYPTOGETACCOUNTRECORDS_FIELD_NUMBER
      See Also:
    • CRYPTOGETINFO_FIELD_NUMBER

      public static final int CRYPTOGETINFO_FIELD_NUMBER
      See Also:
    • CRYPTOGETLIVEHASH_FIELD_NUMBER

      public static final int CRYPTOGETLIVEHASH_FIELD_NUMBER
      See Also:
    • CRYPTOGETPROXYSTAKERS_FIELD_NUMBER

      public static final int CRYPTOGETPROXYSTAKERS_FIELD_NUMBER
      See Also:
    • FILEGETCONTENTS_FIELD_NUMBER

      public static final int FILEGETCONTENTS_FIELD_NUMBER
      See Also:
    • FILEGETINFO_FIELD_NUMBER

      public static final int FILEGETINFO_FIELD_NUMBER
      See Also:
    • TRANSACTIONGETRECEIPT_FIELD_NUMBER

      public static final int TRANSACTIONGETRECEIPT_FIELD_NUMBER
      See Also:
    • TRANSACTIONGETRECORD_FIELD_NUMBER

      public static final int TRANSACTIONGETRECORD_FIELD_NUMBER
      See Also:
    • TRANSACTIONGETFASTRECORD_FIELD_NUMBER

      public static final int TRANSACTIONGETFASTRECORD_FIELD_NUMBER
      See Also:
    • CONSENSUSGETTOPICINFO_FIELD_NUMBER

      public static final int CONSENSUSGETTOPICINFO_FIELD_NUMBER
      See Also:
    • NETWORKGETVERSIONINFO_FIELD_NUMBER

      public static final int NETWORKGETVERSIONINFO_FIELD_NUMBER
      See Also:
    • TOKENGETINFO_FIELD_NUMBER

      public static final int TOKENGETINFO_FIELD_NUMBER
      See Also:
    • SCHEDULEGETINFO_FIELD_NUMBER

      public static final int SCHEDULEGETINFO_FIELD_NUMBER
      See Also:
    • TOKENGETACCOUNTNFTINFOS_FIELD_NUMBER

      public static final int TOKENGETACCOUNTNFTINFOS_FIELD_NUMBER
      See Also:
    • TOKENGETNFTINFO_FIELD_NUMBER

      public static final int TOKENGETNFTINFO_FIELD_NUMBER
      See Also:
    • TOKENGETNFTINFOS_FIELD_NUMBER

      public static final int TOKENGETNFTINFOS_FIELD_NUMBER
      See Also:
    • NETWORKGETEXECUTIONTIME_FIELD_NUMBER

      public static final int NETWORKGETEXECUTIONTIME_FIELD_NUMBER
      See Also:
    • ACCOUNTDETAILS_FIELD_NUMBER

      public static final int ACCOUNTDETAILS_FIELD_NUMBER
      See Also:
  • Method Details

    • getResponseCase

      public Response.ResponseCase getResponseCase()
      Specified by:
      getResponseCase in interface ResponseOrBuilder
    • hasGetByKey

      public boolean hasGetByKey()
       *
       A response for a query requesting all accounts, claims, files, and
       smart contract instances whose associated keys include the given Key.
       <p>
       > This query is no longer supported.
       
      .proto.GetByKeyResponse getByKey = 1;
      Specified by:
      hasGetByKey in interface ResponseOrBuilder
      Returns:
      Whether the getByKey field is set.
    • getGetByKey

      public GetByKeyResponse getGetByKey()
       *
       A response for a query requesting all accounts, claims, files, and
       smart contract instances whose associated keys include the given Key.
       <p>
       > This query is no longer supported.
       
      .proto.GetByKeyResponse getByKey = 1;
      Specified by:
      getGetByKey in interface ResponseOrBuilder
      Returns:
      The getByKey.
    • hasGetBySolidityID

      public boolean hasGetBySolidityID()
       *
       A response for a query requesting Contract, Account, and File
       identifiers for a smart contract, given a Solidity identifier.
       
      .proto.GetBySolidityIDResponse getBySolidityID = 2;
      Specified by:
      hasGetBySolidityID in interface ResponseOrBuilder
      Returns:
      Whether the getBySolidityID field is set.
    • getGetBySolidityID

      public GetBySolidityIDResponse getGetBySolidityID()
       *
       A response for a query requesting Contract, Account, and File
       identifiers for a smart contract, given a Solidity identifier.
       
      .proto.GetBySolidityIDResponse getBySolidityID = 2;
      Specified by:
      getGetBySolidityID in interface ResponseOrBuilder
      Returns:
      The getBySolidityID.
    • hasContractCallLocal

      public boolean hasContractCallLocal()
       *
       A response for a _local_ call to a query function of a given smart
       contract, providing function parameter inputs as needed.
       <p>
       > This call is only performed on the local node. It is _not_ a
       > network consensus result.
       
      .proto.ContractCallLocalResponse contractCallLocal = 3;
      Specified by:
      hasContractCallLocal in interface ResponseOrBuilder
      Returns:
      Whether the contractCallLocal field is set.
    • getContractCallLocal

      public ContractCallLocalResponse getContractCallLocal()
       *
       A response for a _local_ call to a query function of a given smart
       contract, providing function parameter inputs as needed.
       <p>
       > This call is only performed on the local node. It is _not_ a
       > network consensus result.
       
      .proto.ContractCallLocalResponse contractCallLocal = 3;
      Specified by:
      getContractCallLocal in interface ResponseOrBuilder
      Returns:
      The contractCallLocal.
    • hasContractGetBytecodeResponse

      public boolean hasContractGetBytecodeResponse()
       *
       A response for a query requesting the current bytecode for
       a smart contract.
       
      .proto.ContractGetBytecodeResponse contractGetBytecodeResponse = 5;
      Specified by:
      hasContractGetBytecodeResponse in interface ResponseOrBuilder
      Returns:
      Whether the contractGetBytecodeResponse field is set.
    • getContractGetBytecodeResponse

      public ContractGetBytecodeResponse getContractGetBytecodeResponse()
       *
       A response for a query requesting the current bytecode for
       a smart contract.
       
      .proto.ContractGetBytecodeResponse contractGetBytecodeResponse = 5;
      Specified by:
      getContractGetBytecodeResponse in interface ResponseOrBuilder
      Returns:
      The contractGetBytecodeResponse.
    • hasContractGetInfo

      public boolean hasContractGetInfo()
       *
       A response for a query requesting detailed information about
       a smart contract.
       
      .proto.ContractGetInfoResponse contractGetInfo = 4;
      Specified by:
      hasContractGetInfo in interface ResponseOrBuilder
      Returns:
      Whether the contractGetInfo field is set.
    • getContractGetInfo

      public ContractGetInfoResponse getContractGetInfo()
       *
       A response for a query requesting detailed information about
       a smart contract.
       
      .proto.ContractGetInfoResponse contractGetInfo = 4;
      Specified by:
      getContractGetInfo in interface ResponseOrBuilder
      Returns:
      The contractGetInfo.
    • hasContractGetRecordsResponse

      public boolean hasContractGetRecordsResponse()
       *
       A response for a query requesting records of all transactions
       against the given contract in the last 25 hours.
       <p>
       > This query is no longer supported.
       
      .proto.ContractGetRecordsResponse contractGetRecordsResponse = 6;
      Specified by:
      hasContractGetRecordsResponse in interface ResponseOrBuilder
      Returns:
      Whether the contractGetRecordsResponse field is set.
    • getContractGetRecordsResponse

      public ContractGetRecordsResponse getContractGetRecordsResponse()
       *
       A response for a query requesting records of all transactions
       against the given contract in the last 25 hours.
       <p>
       > This query is no longer supported.
       
      .proto.ContractGetRecordsResponse contractGetRecordsResponse = 6;
      Specified by:
      getContractGetRecordsResponse in interface ResponseOrBuilder
      Returns:
      The contractGetRecordsResponse.
    • hasCryptogetAccountBalance

      public boolean hasCryptogetAccountBalance()
       *
       A response for a query requesting the HBAR balance of an account
       or contract.
       
      .proto.CryptoGetAccountBalanceResponse cryptogetAccountBalance = 7;
      Specified by:
      hasCryptogetAccountBalance in interface ResponseOrBuilder
      Returns:
      Whether the cryptogetAccountBalance field is set.
    • getCryptogetAccountBalance

      public CryptoGetAccountBalanceResponse getCryptogetAccountBalance()
       *
       A response for a query requesting the HBAR balance of an account
       or contract.
       
      .proto.CryptoGetAccountBalanceResponse cryptogetAccountBalance = 7;
      Specified by:
      getCryptogetAccountBalance in interface ResponseOrBuilder
      Returns:
      The cryptogetAccountBalance.
    • hasCryptoGetAccountRecords

      public boolean hasCryptoGetAccountRecords()
       *
       A response for a query requesting records of all "recent"
       transactions for which the specified account is the effective payer.
       
      .proto.CryptoGetAccountRecordsResponse cryptoGetAccountRecords = 8;
      Specified by:
      hasCryptoGetAccountRecords in interface ResponseOrBuilder
      Returns:
      Whether the cryptoGetAccountRecords field is set.
    • getCryptoGetAccountRecords

      public CryptoGetAccountRecordsResponse getCryptoGetAccountRecords()
       *
       A response for a query requesting records of all "recent"
       transactions for which the specified account is the effective payer.
       
      .proto.CryptoGetAccountRecordsResponse cryptoGetAccountRecords = 8;
      Specified by:
      getCryptoGetAccountRecords in interface ResponseOrBuilder
      Returns:
      The cryptoGetAccountRecords.
    • hasCryptoGetInfo

      public boolean hasCryptoGetInfo()
       *
       A response for a query requesting information for an account.<br/>
       This query includes balance, but not allowances or token
       relationships.
       
      .proto.CryptoGetInfoResponse cryptoGetInfo = 9;
      Specified by:
      hasCryptoGetInfo in interface ResponseOrBuilder
      Returns:
      Whether the cryptoGetInfo field is set.
    • getCryptoGetInfo

      public CryptoGetInfoResponse getCryptoGetInfo()
       *
       A response for a query requesting information for an account.<br/>
       This query includes balance, but not allowances or token
       relationships.
       
      .proto.CryptoGetInfoResponse cryptoGetInfo = 9;
      Specified by:
      getCryptoGetInfo in interface ResponseOrBuilder
      Returns:
      The cryptoGetInfo.
    • hasCryptoGetLiveHash

      public boolean hasCryptoGetLiveHash()
       *
       A response for a query requesting detail for a specific live hash
       associated to a specific account.
       <p>
       > This query is no longer supported.
       
      .proto.CryptoGetLiveHashResponse cryptoGetLiveHash = 10;
      Specified by:
      hasCryptoGetLiveHash in interface ResponseOrBuilder
      Returns:
      Whether the cryptoGetLiveHash field is set.
    • getCryptoGetLiveHash

      public CryptoGetLiveHashResponse getCryptoGetLiveHash()
       *
       A response for a query requesting detail for a specific live hash
       associated to a specific account.
       <p>
       > This query is no longer supported.
       
      .proto.CryptoGetLiveHashResponse cryptoGetLiveHash = 10;
      Specified by:
      getCryptoGetLiveHash in interface ResponseOrBuilder
      Returns:
      The cryptoGetLiveHash.
    • hasCryptoGetProxyStakers

      public boolean hasCryptoGetProxyStakers()
       *
       A response for a query requesting all the accounts that are proxy
       staking to this account.
       <p>
       > This query is no longer supported.
       
      .proto.CryptoGetStakersResponse cryptoGetProxyStakers = 11;
      Specified by:
      hasCryptoGetProxyStakers in interface ResponseOrBuilder
      Returns:
      Whether the cryptoGetProxyStakers field is set.
    • getCryptoGetProxyStakers

      public CryptoGetStakersResponse getCryptoGetProxyStakers()
       *
       A response for a query requesting all the accounts that are proxy
       staking to this account.
       <p>
       > This query is no longer supported.
       
      .proto.CryptoGetStakersResponse cryptoGetProxyStakers = 11;
      Specified by:
      getCryptoGetProxyStakers in interface ResponseOrBuilder
      Returns:
      The cryptoGetProxyStakers.
    • hasFileGetContents

      public boolean hasFileGetContents()
       *
       A response for a query requesting the content of a file in the
       Hedera File Service (HFS).
       
      .proto.FileGetContentsResponse fileGetContents = 12;
      Specified by:
      hasFileGetContents in interface ResponseOrBuilder
      Returns:
      Whether the fileGetContents field is set.
    • getFileGetContents

      public FileGetContentsResponse getFileGetContents()
       *
       A response for a query requesting the content of a file in the
       Hedera File Service (HFS).
       
      .proto.FileGetContentsResponse fileGetContents = 12;
      Specified by:
      getFileGetContents in interface ResponseOrBuilder
      Returns:
      The fileGetContents.
    • hasFileGetInfo

      public boolean hasFileGetInfo()
       *
       A response for a query requesting file metadata from the
       Hedera File Service (HFS).
       
      .proto.FileGetInfoResponse fileGetInfo = 13;
      Specified by:
      hasFileGetInfo in interface ResponseOrBuilder
      Returns:
      Whether the fileGetInfo field is set.
    • getFileGetInfo

      public FileGetInfoResponse getFileGetInfo()
       *
       A response for a query requesting file metadata from the
       Hedera File Service (HFS).
       
      .proto.FileGetInfoResponse fileGetInfo = 13;
      Specified by:
      getFileGetInfo in interface ResponseOrBuilder
      Returns:
      The fileGetInfo.
    • hasTransactionGetReceipt

      public boolean hasTransactionGetReceipt()
       *
       A response for a query requesting the post-consensus (final)
       result of a transaction.
       
      .proto.TransactionGetReceiptResponse transactionGetReceipt = 14;
      Specified by:
      hasTransactionGetReceipt in interface ResponseOrBuilder
      Returns:
      Whether the transactionGetReceipt field is set.
    • getTransactionGetReceipt

      public TransactionGetReceiptResponse getTransactionGetReceipt()
       *
       A response for a query requesting the post-consensus (final)
       result of a transaction.
       
      .proto.TransactionGetReceiptResponse transactionGetReceipt = 14;
      Specified by:
      getTransactionGetReceipt in interface ResponseOrBuilder
      Returns:
      The transactionGetReceipt.
    • hasTransactionGetRecord

      public boolean hasTransactionGetRecord()
       *
       A response for a query requesting a transaction record; the detail
       changes completed in response to a transaction.
       
      .proto.TransactionGetRecordResponse transactionGetRecord = 15;
      Specified by:
      hasTransactionGetRecord in interface ResponseOrBuilder
      Returns:
      Whether the transactionGetRecord field is set.
    • getTransactionGetRecord

      public TransactionGetRecordResponse getTransactionGetRecord()
       *
       A response for a query requesting a transaction record; the detail
       changes completed in response to a transaction.
       
      .proto.TransactionGetRecordResponse transactionGetRecord = 15;
      Specified by:
      getTransactionGetRecord in interface ResponseOrBuilder
      Returns:
      The transactionGetRecord.
    • hasTransactionGetFastRecord

      public boolean hasTransactionGetFastRecord()
       *
       A response for a query requesting a very recent transaction record.
       <p>
       > This query is no longer supported.
       
      .proto.TransactionGetFastRecordResponse transactionGetFastRecord = 16;
      Specified by:
      hasTransactionGetFastRecord in interface ResponseOrBuilder
      Returns:
      Whether the transactionGetFastRecord field is set.
    • getTransactionGetFastRecord

      public TransactionGetFastRecordResponse getTransactionGetFastRecord()
       *
       A response for a query requesting a very recent transaction record.
       <p>
       > This query is no longer supported.
       
      .proto.TransactionGetFastRecordResponse transactionGetFastRecord = 16;
      Specified by:
      getTransactionGetFastRecord in interface ResponseOrBuilder
      Returns:
      The transactionGetFastRecord.
    • hasConsensusGetTopicInfo

      public boolean hasConsensusGetTopicInfo()
       *
       A response for a query requesting the current state of a topic for
       the Hedera Consensus Service (HCS).
       
      .proto.ConsensusGetTopicInfoResponse consensusGetTopicInfo = 150;
      Specified by:
      hasConsensusGetTopicInfo in interface ResponseOrBuilder
      Returns:
      Whether the consensusGetTopicInfo field is set.
    • getConsensusGetTopicInfo

      public ConsensusGetTopicInfoResponse getConsensusGetTopicInfo()
       *
       A response for a query requesting the current state of a topic for
       the Hedera Consensus Service (HCS).
       
      .proto.ConsensusGetTopicInfoResponse consensusGetTopicInfo = 150;
      Specified by:
      getConsensusGetTopicInfo in interface ResponseOrBuilder
      Returns:
      The consensusGetTopicInfo.
    • hasNetworkGetVersionInfo

      public boolean hasNetworkGetVersionInfo()
       *
       A response for a query requesting the deployed versions of Hedera
       Services and the API definitions in semantic version format
       
      .proto.NetworkGetVersionInfoResponse networkGetVersionInfo = 151;
      Specified by:
      hasNetworkGetVersionInfo in interface ResponseOrBuilder
      Returns:
      Whether the networkGetVersionInfo field is set.
    • getNetworkGetVersionInfo

      public NetworkGetVersionInfoResponse getNetworkGetVersionInfo()
       *
       A response for a query requesting the deployed versions of Hedera
       Services and the API definitions in semantic version format
       
      .proto.NetworkGetVersionInfoResponse networkGetVersionInfo = 151;
      Specified by:
      getNetworkGetVersionInfo in interface ResponseOrBuilder
      Returns:
      The networkGetVersionInfo.
    • hasTokenGetInfo

      public boolean hasTokenGetInfo()
       *
       A response for a query requesting metadata for a specific Token.
       
      .proto.TokenGetInfoResponse tokenGetInfo = 152;
      Specified by:
      hasTokenGetInfo in interface ResponseOrBuilder
      Returns:
      Whether the tokenGetInfo field is set.
    • getTokenGetInfo

      public TokenGetInfoResponse getTokenGetInfo()
       *
       A response for a query requesting metadata for a specific Token.
       
      .proto.TokenGetInfoResponse tokenGetInfo = 152;
      Specified by:
      getTokenGetInfo in interface ResponseOrBuilder
      Returns:
      The tokenGetInfo.
    • hasScheduleGetInfo

      public boolean hasScheduleGetInfo()
       *
       A response for a query requesting detail for a scheduled transaction.
       
      .proto.ScheduleGetInfoResponse scheduleGetInfo = 153;
      Specified by:
      hasScheduleGetInfo in interface ResponseOrBuilder
      Returns:
      Whether the scheduleGetInfo field is set.
    • getScheduleGetInfo

      public ScheduleGetInfoResponse getScheduleGetInfo()
       *
       A response for a query requesting detail for a scheduled transaction.
       
      .proto.ScheduleGetInfoResponse scheduleGetInfo = 153;
      Specified by:
      getScheduleGetInfo in interface ResponseOrBuilder
      Returns:
      The scheduleGetInfo.
    • hasTokenGetAccountNftInfos

      public boolean hasTokenGetAccountNftInfos()
       *
       A response for a query requesting detail for a subset of individual
       non-fungible/unique tokens owned by an account.<br/>
       The requested tokens are selected by a list index, which is based
       on the order in which the tokens were added to the account.
       
      .proto.TokenGetAccountNftInfosResponse tokenGetAccountNftInfos = 154;
      Specified by:
      hasTokenGetAccountNftInfos in interface ResponseOrBuilder
      Returns:
      Whether the tokenGetAccountNftInfos field is set.
    • getTokenGetAccountNftInfos

      public TokenGetAccountNftInfosResponse getTokenGetAccountNftInfos()
       *
       A response for a query requesting detail for a subset of individual
       non-fungible/unique tokens owned by an account.<br/>
       The requested tokens are selected by a list index, which is based
       on the order in which the tokens were added to the account.
       
      .proto.TokenGetAccountNftInfosResponse tokenGetAccountNftInfos = 154;
      Specified by:
      getTokenGetAccountNftInfos in interface ResponseOrBuilder
      Returns:
      The tokenGetAccountNftInfos.
    • hasTokenGetNftInfo

      public boolean hasTokenGetNftInfo()
       *
       A response for a query requesting detail for a specific
       non-fungible/unique token selected by both token identifier and
       serial number.
       
      .proto.TokenGetNftInfoResponse tokenGetNftInfo = 155;
      Specified by:
      hasTokenGetNftInfo in interface ResponseOrBuilder
      Returns:
      Whether the tokenGetNftInfo field is set.
    • getTokenGetNftInfo

      public TokenGetNftInfoResponse getTokenGetNftInfo()
       *
       A response for a query requesting detail for a specific
       non-fungible/unique token selected by both token identifier and
       serial number.
       
      .proto.TokenGetNftInfoResponse tokenGetNftInfo = 155;
      Specified by:
      getTokenGetNftInfo in interface ResponseOrBuilder
      Returns:
      The tokenGetNftInfo.
    • hasTokenGetNftInfos

      public boolean hasTokenGetNftInfos()
       *
       A response for a query requesting detail for a subset of individual
       non-fungible/unique tokens.<br/>
       The requested tokens are selected by a list index, which is based
       on the order in which the tokens were minted.
       
      .proto.TokenGetNftInfosResponse tokenGetNftInfos = 156;
      Specified by:
      hasTokenGetNftInfos in interface ResponseOrBuilder
      Returns:
      Whether the tokenGetNftInfos field is set.
    • getTokenGetNftInfos

      public TokenGetNftInfosResponse getTokenGetNftInfos()
       *
       A response for a query requesting detail for a subset of individual
       non-fungible/unique tokens.<br/>
       The requested tokens are selected by a list index, which is based
       on the order in which the tokens were minted.
       
      .proto.TokenGetNftInfosResponse tokenGetNftInfos = 156;
      Specified by:
      getTokenGetNftInfos in interface ResponseOrBuilder
      Returns:
      The tokenGetNftInfos.
    • hasNetworkGetExecutionTime

      public boolean hasNetworkGetExecutionTime()
       *
       A response for a query requesting the time, in nanoseconds, spent
       in direct processing for one or more recent transactions.
       <p>
       > This query is no longer supported.
       
      .proto.NetworkGetExecutionTimeResponse networkGetExecutionTime = 157;
      Specified by:
      hasNetworkGetExecutionTime in interface ResponseOrBuilder
      Returns:
      Whether the networkGetExecutionTime field is set.
    • getNetworkGetExecutionTime

      public NetworkGetExecutionTimeResponse getNetworkGetExecutionTime()
       *
       A response for a query requesting the time, in nanoseconds, spent
       in direct processing for one or more recent transactions.
       <p>
       > This query is no longer supported.
       
      .proto.NetworkGetExecutionTimeResponse networkGetExecutionTime = 157;
      Specified by:
      getNetworkGetExecutionTime in interface ResponseOrBuilder
      Returns:
      The networkGetExecutionTime.
    • hasAccountDetails

      public boolean hasAccountDetails()
       *
       A response for a query requesting detail information
       about an account.
       <p>
       This query is a privileged query and "system" account authorization
       is REQUIRED for this query.
       
      .proto.GetAccountDetailsResponse accountDetails = 158;
      Specified by:
      hasAccountDetails in interface ResponseOrBuilder
      Returns:
      Whether the accountDetails field is set.
    • getAccountDetails

      public GetAccountDetailsResponse getAccountDetails()
       *
       A response for a query requesting detail information
       about an account.
       <p>
       This query is a privileged query and "system" account authorization
       is REQUIRED for this query.
       
      .proto.GetAccountDetailsResponse accountDetails = 158;
      Specified by:
      getAccountDetails in interface ResponseOrBuilder
      Returns:
      The accountDetails.
    • parseFrom

      public static Response parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Response parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Response parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Response parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Response parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Response parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Response parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Response parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Response parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Response parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Response parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Response parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilder

      public static Response.Builder newBuilder()
    • newBuilder

      public static Response.Builder newBuilder(Response prototype)
    • dynamicMethod

      protected final Object dynamicMethod(com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, Object arg0, Object arg1)
      Specified by:
      dynamicMethod in class com.google.protobuf.GeneratedMessageLite<Response,Response.Builder>
    • getDefaultInstance

      public static Response getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<Response> parser()