com.hederahashgraph.api.proto.java.SlotValueOrBuilder 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 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();
}