com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBodyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_delete.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface CryptoDeleteTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.CryptoDeleteTransactionBody)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
* @return Whether the transferAccountID field is set.
*/
boolean hasTransferAccountID();
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
* @return The transferAccountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getTransferAccountID();
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
* @return Whether the deleteAccountID field is set.
*/
boolean hasDeleteAccountID();
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
* @return The deleteAccountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getDeleteAccountID();
}