com.hederahashgraph.api.proto.java.ContractDeleteTransactionBodyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_delete.proto
package com.hederahashgraph.api.proto.java;
public interface ContractDeleteTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractDeleteTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* 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.hederahashgraph.api.proto.java.ContractID getContractID();
/**
*
**
* The id of the contract to be deleted
*
*
* .proto.ContractID contractID = 1;
*/
com.hederahashgraph.api.proto.java.ContractIDOrBuilder getContractIDOrBuilder();
/**
*
**
* 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.hederahashgraph.api.proto.java.AccountID getTransferAccountID();
/**
*
**
* The id of an account to receive any remaining hBars from the deleted contract
*
*
* .proto.AccountID transferAccountID = 2;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getTransferAccountIDOrBuilder();
/**
*
**
* 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.hederahashgraph.api.proto.java.ContractID getTransferContractID();
/**
*
**
* The id of a contract to receive any remaining hBars from the deleted contract
*
*
* .proto.ContractID transferContractID = 3;
*/
com.hederahashgraph.api.proto.java.ContractIDOrBuilder getTransferContractIDOrBuilder();
/**
*
**
* 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.hederahashgraph.api.proto.java.ContractDeleteTransactionBody.ObtainersCase getObtainersCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy