com.hederahashgraph.api.proto.java.CryptoDeleteTransactionBodyOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_delete.proto
package com.hederahashgraph.api.proto.java;
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.hederahashgraph.api.proto.java.AccountID getTransferAccountID();
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.AccountID getDeleteAccountID();
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getDeleteAccountIDOrBuilder();
}