com.hederahashgraph.api.proto.java.SlotKeyOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: state/contract/storage_slot.proto
package com.hederahashgraph.api.proto.java;
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.hederahashgraph.api.proto.java.ContractID getContractID();
/**
*
**
* The number of the contract whose storage this slot belongs to.
*
*
* .proto.ContractID contractID = 1;
*/
com.hederahashgraph.api.proto.java.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();
}