com.hedera.hashgraph.sdk.proto.SlotKeyOrBuilder 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: storage_slot.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface SlotKeyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.SlotKey)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The number of the contract whose storage this slot belongs to.
*
*
* .proto.ContractID contractID = 1;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* The number of the contract whose storage this slot belongs to.
*
*
* .proto.ContractID contractID = 1;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* The number of the contract whose storage this slot belongs to.
*
*
* .proto.ContractID contractID = 1;
*/
com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder();
/**
*
**
* The EVM key of this slot, when left-padded with zeros to form a 256-bit word.
*
*
* bytes key = 2;
* @return The key.
*/
com.google.protobuf.ByteString getKey();
}