com.hedera.hashgraph.sdk.proto.ContractLoginfoOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_call_local.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ContractLoginfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractLoginfo)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* address of a contract that emitted the event
*
*
* .proto.ContractID contractID = 1;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* address of a contract that emitted the event
*
*
* .proto.ContractID contractID = 1;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* bloom filter for a particular log
*
*
* bytes bloom = 2;
* @return The bloom.
*/
com.google.protobuf.ByteString getBloom();
/**
*
**
* topics of a particular event
*
*
* repeated bytes topic = 3;
* @return A list containing the topic.
*/
java.util.List getTopicList();
/**
*
**
* topics of a particular event
*
*
* repeated bytes topic = 3;
* @return The count of topic.
*/
int getTopicCount();
/**
*
**
* topics of a particular event
*
*
* repeated bytes topic = 3;
* @param index The index of the element to return.
* @return The topic at the given index.
*/
com.google.protobuf.ByteString getTopic(int index);
/**
*
**
* event data
*
*
* bytes data = 4;
* @return The data.
*/
com.google.protobuf.ByteString getData();
}