com.hedera.hashgraph.sdk.proto.ContractGetRecordsResponseOrBuilder 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: contract_get_records.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
@java.lang.Deprecated public interface ContractGetRecordsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractGetRecordsResponse)
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();
/**
*
**
* The smart contract instance that this record is for
*
*
* .proto.ContractID contractID = 2;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* The smart contract instance that this record is for
*
*
* .proto.ContractID contractID = 2;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* The smart contract instance that this record is for
*
*
* .proto.ContractID contractID = 2;
*/
com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder();
/**
*
**
* List of records, each with contractCreateResult or contractCallResult as its body
*
*
* repeated .proto.TransactionRecord records = 3;
*/
java.util.List
getRecordsList();
/**
*
**
* List of records, each with contractCreateResult or contractCallResult as its body
*
*
* repeated .proto.TransactionRecord records = 3;
*/
com.hedera.hashgraph.sdk.proto.TransactionRecord getRecords(int index);
/**
*
**
* List of records, each with contractCreateResult or contractCallResult as its body
*
*
* repeated .proto.TransactionRecord records = 3;
*/
int getRecordsCount();
/**
*
**
* List of records, each with contractCreateResult or contractCallResult as its body
*
*
* repeated .proto.TransactionRecord records = 3;
*/
java.util.List extends com.hedera.hashgraph.sdk.proto.TransactionRecordOrBuilder>
getRecordsOrBuilderList();
/**
*
**
* List of records, each with contractCreateResult or contractCallResult as its body
*
*
* repeated .proto.TransactionRecord records = 3;
*/
com.hedera.hashgraph.sdk.proto.TransactionRecordOrBuilder getRecordsOrBuilder(
int index);
}