com.hedera.hashgraph.sdk.proto.CryptoGetAccountRecordsResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_get_account_records.proto
package com.hedera.hashgraph.sdk.proto;
public interface CryptoGetAccountRecordsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CryptoGetAccountRecordsResponse)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* 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();
/**
*
**
* The account that this record is for
*
*
* .proto.AccountID accountID = 2;
* @return Whether the accountID field is set.
*/
boolean hasAccountID();
/**
*
**
* The account that this record is for
*
*
* .proto.AccountID accountID = 2;
* @return The accountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getAccountID();
/**
*
**
* List of records
*
*
* repeated .proto.TransactionRecord records = 3;
*/
java.util.List
getRecordsList();
/**
*
**
* List of records
*
*
* repeated .proto.TransactionRecord records = 3;
*/
com.hedera.hashgraph.sdk.proto.TransactionRecord getRecords(int index);
/**
*
**
* List of records
*
*
* repeated .proto.TransactionRecord records = 3;
*/
int getRecordsCount();
}