com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBodyOrBuilder 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
// 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.MessageOrBuilder {
/**
*
**
* 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 will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getTransferAccountIDOrBuilder();
/**
*
**
* 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();
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getDeleteAccountIDOrBuilder();
}