com.hedera.hashgraph.sdk.proto.SlotValueOrBuilder 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 SlotValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.SlotValue)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The EVM value in this slot, when left-padded with zeros to form a 256-bit word.
*
*
* bytes value = 1;
* @return The value.
*/
com.google.protobuf.ByteString getValue();
/**
*
**
* The word of the previous key in this contract's storage list (if any).
*
*
* bytes previous_key = 2;
* @return The previousKey.
*/
com.google.protobuf.ByteString getPreviousKey();
/**
*
**
* The word of the next key in this contract's storage list (if any).
*
*
* bytes next_key = 3;
* @return The nextKey.
*/
com.google.protobuf.ByteString getNextKey();
}