All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.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.hedera.hashgraph.sdk.proto.ContractID getContractID(); /** *
   **
   * The id of the contract to be deleted
   * 
* * .proto.ContractID contractID = 1; */ com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.AccountID getTransferAccountID(); /** *
   **
   * The id of an account to receive any remaining hBars from the deleted contract
   * 
* * .proto.AccountID transferAccountID = 2; */ com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.ContractID getTransferContractID(); /** *
   **
   * The id of a contract to receive any remaining hBars from the deleted contract
   * 
* * .proto.ContractID transferContractID = 3; */ com.hedera.hashgraph.sdk.proto.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(); com.hedera.hashgraph.sdk.proto.ContractDeleteTransactionBody.ObtainersCase getObtainersCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy