com.hedera.hashgraph.sdk.proto.ContractDeleteTransactionBodyOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_delete.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ContractDeleteTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractDeleteTransactionBody)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* The id of the contract to be deleted
*
*
* .proto.ContractID contractID = 1;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* The id of the contract to be deleted
*
*
* .proto.ContractID contractID = 1;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* The id of an account to receive any remaining hBars from the deleted contract
*
*
* .proto.AccountID transferAccountID = 2;
* @return Whether the transferAccountID field is set.
*/
boolean hasTransferAccountID();
/**
*
**
* The id of an account to receive any remaining hBars from the deleted contract
*
*
* .proto.AccountID transferAccountID = 2;
* @return The transferAccountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getTransferAccountID();
/**
*
**
* The id of a contract to receive any remaining hBars from the deleted contract
*
*
* .proto.ContractID transferContractID = 3;
* @return Whether the transferContractID field is set.
*/
boolean hasTransferContractID();
/**
*
**
* The id of a contract to receive any remaining hBars from the deleted contract
*
*
* .proto.ContractID transferContractID = 3;
* @return The transferContractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getTransferContractID();
/**
*
**
* If set to true, means this is a "synthetic" system transaction being used to
* alert mirror nodes that the contract is being permanently removed from the ledger.
* <b>IMPORTANT:</b> User transactions cannot set this field to true, as permanent
* removal is always managed by the ledger itself. Any ContractDeleteTransactionBody
* submitted to HAPI with permanent_removal=true will be rejected with precheck status
* PERMANENT_REMOVAL_REQUIRES_SYSTEM_INITIATION.
*
*
* bool permanent_removal = 4;
* @return The permanentRemoval.
*/
boolean getPermanentRemoval();
public com.hedera.hashgraph.sdk.proto.ContractDeleteTransactionBody.ObtainersCase getObtainersCase();
}