com.hedera.hashgraph.sdk.proto.CryptoDeleteLiveHashTransactionBodyOrBuilder 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: crypto_delete_live_hash.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface CryptoDeleteLiveHashTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CryptoDeleteLiveHashTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The account owning the livehash
*
*
* .proto.AccountID accountOfLiveHash = 1;
* @return Whether the accountOfLiveHash field is set.
*/
boolean hasAccountOfLiveHash();
/**
*
**
* The account owning the livehash
*
*
* .proto.AccountID accountOfLiveHash = 1;
* @return The accountOfLiveHash.
*/
com.hedera.hashgraph.sdk.proto.AccountID getAccountOfLiveHash();
/**
*
**
* The account owning the livehash
*
*
* .proto.AccountID accountOfLiveHash = 1;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountOfLiveHashOrBuilder();
/**
*
**
* The SHA-384 livehash to delete from the account
*
*
* bytes liveHashToDelete = 2;
* @return The liveHashToDelete.
*/
com.google.protobuf.ByteString getLiveHashToDelete();
}