Class SchedulableTransactionBody.Builder

java.lang.Object
com.google.protobuf.AbstractMessageLite.Builder<SchedulableTransactionBody,SchedulableTransactionBody.Builder>
com.google.protobuf.GeneratedMessageLite.Builder<SchedulableTransactionBody,SchedulableTransactionBody.Builder>
com.hedera.hashgraph.sdk.proto.SchedulableTransactionBody.Builder
All Implemented Interfaces:
com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, SchedulableTransactionBodyOrBuilder, Cloneable
Enclosing class:
SchedulableTransactionBody

public static final class SchedulableTransactionBody.Builder extends com.google.protobuf.GeneratedMessageLite.Builder<SchedulableTransactionBody,SchedulableTransactionBody.Builder> implements SchedulableTransactionBodyOrBuilder
 *
 A schedulable transaction.

 The network configuration `scheduling.whitelist` limits which of these
 transaction types may actually be scheduled. As of version `0.50.0` of the
 consensus node software this list contains only `CryptoTransfer`,
 `ConsensusSubmitMessage`, `TokenBurn`, `TokenMint`,
 and `CryptoApproveAllowance`.
 
Protobuf type proto.SchedulableTransactionBody
  • Method Details

    • getDataCase

      Specified by:
      getDataCase in interface SchedulableTransactionBodyOrBuilder
    • clearData

    • getTransactionFee

      public long getTransactionFee()
       *
       A limit for the transaction fee the client is willing to pay.
       <p>
       The network SHALL NOT charge fees greater than this value.
       
      uint64 transactionFee = 1;
      Specified by:
      getTransactionFee in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The transactionFee.
    • setTransactionFee

      public SchedulableTransactionBody.Builder setTransactionFee(long value)
       *
       A limit for the transaction fee the client is willing to pay.
       <p>
       The network SHALL NOT charge fees greater than this value.
       
      uint64 transactionFee = 1;
      Parameters:
      value - The transactionFee to set.
      Returns:
      This builder for chaining.
    • clearTransactionFee

      public SchedulableTransactionBody.Builder clearTransactionFee()
       *
       A limit for the transaction fee the client is willing to pay.
       <p>
       The network SHALL NOT charge fees greater than this value.
       
      uint64 transactionFee = 1;
      Returns:
      This builder for chaining.
    • getMemo

      public String getMemo()
       *
       A short description of the schedulable transaction.
       <p>
       This value, if set, MUST NOT exceed `transaction.maxMemoUtf8Bytes`
       (default 100) bytes when encoded as UTF-8.
       
      string memo = 2;
      Specified by:
      getMemo in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The memo.
    • getMemoBytes

      public com.google.protobuf.ByteString getMemoBytes()
       *
       A short description of the schedulable transaction.
       <p>
       This value, if set, MUST NOT exceed `transaction.maxMemoUtf8Bytes`
       (default 100) bytes when encoded as UTF-8.
       
      string memo = 2;
      Specified by:
      getMemoBytes in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The bytes for memo.
    • setMemo

       *
       A short description of the schedulable transaction.
       <p>
       This value, if set, MUST NOT exceed `transaction.maxMemoUtf8Bytes`
       (default 100) bytes when encoded as UTF-8.
       
      string memo = 2;
      Parameters:
      value - The memo to set.
      Returns:
      This builder for chaining.
    • clearMemo

       *
       A short description of the schedulable transaction.
       <p>
       This value, if set, MUST NOT exceed `transaction.maxMemoUtf8Bytes`
       (default 100) bytes when encoded as UTF-8.
       
      string memo = 2;
      Returns:
      This builder for chaining.
    • setMemoBytes

      public SchedulableTransactionBody.Builder setMemoBytes(com.google.protobuf.ByteString value)
       *
       A short description of the schedulable transaction.
       <p>
       This value, if set, MUST NOT exceed `transaction.maxMemoUtf8Bytes`
       (default 100) bytes when encoded as UTF-8.
       
      string memo = 2;
      Parameters:
      value - The bytes for memo to set.
      Returns:
      This builder for chaining.
    • hasContractCall

      public boolean hasContractCall()
       *
       Call a function defined on a smart contract.
       
      .proto.ContractCallTransactionBody contractCall = 3;
      Specified by:
      hasContractCall in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the contractCall field is set.
    • getContractCall

      public ContractCallTransactionBody getContractCall()
       *
       Call a function defined on a smart contract.
       
      .proto.ContractCallTransactionBody contractCall = 3;
      Specified by:
      getContractCall in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The contractCall.
    • setContractCall

       *
       Call a function defined on a smart contract.
       
      .proto.ContractCallTransactionBody contractCall = 3;
    • setContractCall

       *
       Call a function defined on a smart contract.
       
      .proto.ContractCallTransactionBody contractCall = 3;
    • mergeContractCall

       *
       Call a function defined on a smart contract.
       
      .proto.ContractCallTransactionBody contractCall = 3;
    • clearContractCall

      public SchedulableTransactionBody.Builder clearContractCall()
       *
       Call a function defined on a smart contract.
       
      .proto.ContractCallTransactionBody contractCall = 3;
    • hasContractCreateInstance

      public boolean hasContractCreateInstance()
       *
       Create a smart contract.
       
      .proto.ContractCreateTransactionBody contractCreateInstance = 4;
      Specified by:
      hasContractCreateInstance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the contractCreateInstance field is set.
    • getContractCreateInstance

      public ContractCreateTransactionBody getContractCreateInstance()
       *
       Create a smart contract.
       
      .proto.ContractCreateTransactionBody contractCreateInstance = 4;
      Specified by:
      getContractCreateInstance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The contractCreateInstance.
    • setContractCreateInstance

      public SchedulableTransactionBody.Builder setContractCreateInstance(ContractCreateTransactionBody value)
       *
       Create a smart contract.
       
      .proto.ContractCreateTransactionBody contractCreateInstance = 4;
    • setContractCreateInstance

      public SchedulableTransactionBody.Builder setContractCreateInstance(ContractCreateTransactionBody.Builder builderForValue)
       *
       Create a smart contract.
       
      .proto.ContractCreateTransactionBody contractCreateInstance = 4;
    • mergeContractCreateInstance

      public SchedulableTransactionBody.Builder mergeContractCreateInstance(ContractCreateTransactionBody value)
       *
       Create a smart contract.
       
      .proto.ContractCreateTransactionBody contractCreateInstance = 4;
    • clearContractCreateInstance

      public SchedulableTransactionBody.Builder clearContractCreateInstance()
       *
       Create a smart contract.
       
      .proto.ContractCreateTransactionBody contractCreateInstance = 4;
    • hasContractUpdateInstance

      public boolean hasContractUpdateInstance()
       *
       Update a smart contract.
       
      .proto.ContractUpdateTransactionBody contractUpdateInstance = 5;
      Specified by:
      hasContractUpdateInstance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the contractUpdateInstance field is set.
    • getContractUpdateInstance

      public ContractUpdateTransactionBody getContractUpdateInstance()
       *
       Update a smart contract.
       
      .proto.ContractUpdateTransactionBody contractUpdateInstance = 5;
      Specified by:
      getContractUpdateInstance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The contractUpdateInstance.
    • setContractUpdateInstance

      public SchedulableTransactionBody.Builder setContractUpdateInstance(ContractUpdateTransactionBody value)
       *
       Update a smart contract.
       
      .proto.ContractUpdateTransactionBody contractUpdateInstance = 5;
    • setContractUpdateInstance

      public SchedulableTransactionBody.Builder setContractUpdateInstance(ContractUpdateTransactionBody.Builder builderForValue)
       *
       Update a smart contract.
       
      .proto.ContractUpdateTransactionBody contractUpdateInstance = 5;
    • mergeContractUpdateInstance

      public SchedulableTransactionBody.Builder mergeContractUpdateInstance(ContractUpdateTransactionBody value)
       *
       Update a smart contract.
       
      .proto.ContractUpdateTransactionBody contractUpdateInstance = 5;
    • clearContractUpdateInstance

      public SchedulableTransactionBody.Builder clearContractUpdateInstance()
       *
       Update a smart contract.
       
      .proto.ContractUpdateTransactionBody contractUpdateInstance = 5;
    • hasContractDeleteInstance

      public boolean hasContractDeleteInstance()
       *
       Delete a smart contract and transfer remaining balance
       to a specified account.
       
      .proto.ContractDeleteTransactionBody contractDeleteInstance = 6;
      Specified by:
      hasContractDeleteInstance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the contractDeleteInstance field is set.
    • getContractDeleteInstance

      public ContractDeleteTransactionBody getContractDeleteInstance()
       *
       Delete a smart contract and transfer remaining balance
       to a specified account.
       
      .proto.ContractDeleteTransactionBody contractDeleteInstance = 6;
      Specified by:
      getContractDeleteInstance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The contractDeleteInstance.
    • setContractDeleteInstance

      public SchedulableTransactionBody.Builder setContractDeleteInstance(ContractDeleteTransactionBody value)
       *
       Delete a smart contract and transfer remaining balance
       to a specified account.
       
      .proto.ContractDeleteTransactionBody contractDeleteInstance = 6;
    • setContractDeleteInstance

      public SchedulableTransactionBody.Builder setContractDeleteInstance(ContractDeleteTransactionBody.Builder builderForValue)
       *
       Delete a smart contract and transfer remaining balance
       to a specified account.
       
      .proto.ContractDeleteTransactionBody contractDeleteInstance = 6;
    • mergeContractDeleteInstance

      public SchedulableTransactionBody.Builder mergeContractDeleteInstance(ContractDeleteTransactionBody value)
       *
       Delete a smart contract and transfer remaining balance
       to a specified account.
       
      .proto.ContractDeleteTransactionBody contractDeleteInstance = 6;
    • clearContractDeleteInstance

      public SchedulableTransactionBody.Builder clearContractDeleteInstance()
       *
       Delete a smart contract and transfer remaining balance
       to a specified account.
       
      .proto.ContractDeleteTransactionBody contractDeleteInstance = 6;
    • hasCryptoCreateAccount

      public boolean hasCryptoCreateAccount()
       *
       Create a new Hedera account.
       
      .proto.CryptoCreateTransactionBody cryptoCreateAccount = 7;
      Specified by:
      hasCryptoCreateAccount in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the cryptoCreateAccount field is set.
    • getCryptoCreateAccount

      public CryptoCreateTransactionBody getCryptoCreateAccount()
       *
       Create a new Hedera account.
       
      .proto.CryptoCreateTransactionBody cryptoCreateAccount = 7;
      Specified by:
      getCryptoCreateAccount in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The cryptoCreateAccount.
    • setCryptoCreateAccount

      public SchedulableTransactionBody.Builder setCryptoCreateAccount(CryptoCreateTransactionBody value)
       *
       Create a new Hedera account.
       
      .proto.CryptoCreateTransactionBody cryptoCreateAccount = 7;
    • setCryptoCreateAccount

      public SchedulableTransactionBody.Builder setCryptoCreateAccount(CryptoCreateTransactionBody.Builder builderForValue)
       *
       Create a new Hedera account.
       
      .proto.CryptoCreateTransactionBody cryptoCreateAccount = 7;
    • mergeCryptoCreateAccount

      public SchedulableTransactionBody.Builder mergeCryptoCreateAccount(CryptoCreateTransactionBody value)
       *
       Create a new Hedera account.
       
      .proto.CryptoCreateTransactionBody cryptoCreateAccount = 7;
    • clearCryptoCreateAccount

      public SchedulableTransactionBody.Builder clearCryptoCreateAccount()
       *
       Create a new Hedera account.
       
      .proto.CryptoCreateTransactionBody cryptoCreateAccount = 7;
    • hasCryptoDelete

      public boolean hasCryptoDelete()
       *
       Delete an Hedera account.<br/>
       This will mark the account as deleted, and transfer all remaining
       HBAR to a receiver account.
       
      .proto.CryptoDeleteTransactionBody cryptoDelete = 8;
      Specified by:
      hasCryptoDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the cryptoDelete field is set.
    • getCryptoDelete

      public CryptoDeleteTransactionBody getCryptoDelete()
       *
       Delete an Hedera account.<br/>
       This will mark the account as deleted, and transfer all remaining
       HBAR to a receiver account.
       
      .proto.CryptoDeleteTransactionBody cryptoDelete = 8;
      Specified by:
      getCryptoDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The cryptoDelete.
    • setCryptoDelete

       *
       Delete an Hedera account.<br/>
       This will mark the account as deleted, and transfer all remaining
       HBAR to a receiver account.
       
      .proto.CryptoDeleteTransactionBody cryptoDelete = 8;
    • setCryptoDelete

       *
       Delete an Hedera account.<br/>
       This will mark the account as deleted, and transfer all remaining
       HBAR to a receiver account.
       
      .proto.CryptoDeleteTransactionBody cryptoDelete = 8;
    • mergeCryptoDelete

       *
       Delete an Hedera account.<br/>
       This will mark the account as deleted, and transfer all remaining
       HBAR to a receiver account.
       
      .proto.CryptoDeleteTransactionBody cryptoDelete = 8;
    • clearCryptoDelete

      public SchedulableTransactionBody.Builder clearCryptoDelete()
       *
       Delete an Hedera account.<br/>
       This will mark the account as deleted, and transfer all remaining
       HBAR to a receiver account.
       
      .proto.CryptoDeleteTransactionBody cryptoDelete = 8;
    • hasCryptoTransfer

      public boolean hasCryptoTransfer()
       *
       Transfer HBAR between accounts.
       
      .proto.CryptoTransferTransactionBody cryptoTransfer = 9;
      Specified by:
      hasCryptoTransfer in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the cryptoTransfer field is set.
    • getCryptoTransfer

      public CryptoTransferTransactionBody getCryptoTransfer()
       *
       Transfer HBAR between accounts.
       
      .proto.CryptoTransferTransactionBody cryptoTransfer = 9;
      Specified by:
      getCryptoTransfer in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The cryptoTransfer.
    • setCryptoTransfer

       *
       Transfer HBAR between accounts.
       
      .proto.CryptoTransferTransactionBody cryptoTransfer = 9;
    • setCryptoTransfer

       *
       Transfer HBAR between accounts.
       
      .proto.CryptoTransferTransactionBody cryptoTransfer = 9;
    • mergeCryptoTransfer

       *
       Transfer HBAR between accounts.
       
      .proto.CryptoTransferTransactionBody cryptoTransfer = 9;
    • clearCryptoTransfer

      public SchedulableTransactionBody.Builder clearCryptoTransfer()
       *
       Transfer HBAR between accounts.
       
      .proto.CryptoTransferTransactionBody cryptoTransfer = 9;
    • hasCryptoUpdateAccount

      public boolean hasCryptoUpdateAccount()
       *
       Modify an Hedera account.
       
      .proto.CryptoUpdateTransactionBody cryptoUpdateAccount = 10;
      Specified by:
      hasCryptoUpdateAccount in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the cryptoUpdateAccount field is set.
    • getCryptoUpdateAccount

      public CryptoUpdateTransactionBody getCryptoUpdateAccount()
       *
       Modify an Hedera account.
       
      .proto.CryptoUpdateTransactionBody cryptoUpdateAccount = 10;
      Specified by:
      getCryptoUpdateAccount in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The cryptoUpdateAccount.
    • setCryptoUpdateAccount

      public SchedulableTransactionBody.Builder setCryptoUpdateAccount(CryptoUpdateTransactionBody value)
       *
       Modify an Hedera account.
       
      .proto.CryptoUpdateTransactionBody cryptoUpdateAccount = 10;
    • setCryptoUpdateAccount

      public SchedulableTransactionBody.Builder setCryptoUpdateAccount(CryptoUpdateTransactionBody.Builder builderForValue)
       *
       Modify an Hedera account.
       
      .proto.CryptoUpdateTransactionBody cryptoUpdateAccount = 10;
    • mergeCryptoUpdateAccount

      public SchedulableTransactionBody.Builder mergeCryptoUpdateAccount(CryptoUpdateTransactionBody value)
       *
       Modify an Hedera account.
       
      .proto.CryptoUpdateTransactionBody cryptoUpdateAccount = 10;
    • clearCryptoUpdateAccount

      public SchedulableTransactionBody.Builder clearCryptoUpdateAccount()
       *
       Modify an Hedera account.
       
      .proto.CryptoUpdateTransactionBody cryptoUpdateAccount = 10;
    • hasFileAppend

      public boolean hasFileAppend()
       *
       Append data to the end of a file.
       
      .proto.FileAppendTransactionBody fileAppend = 11;
      Specified by:
      hasFileAppend in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the fileAppend field is set.
    • getFileAppend

      public FileAppendTransactionBody getFileAppend()
       *
       Append data to the end of a file.
       
      .proto.FileAppendTransactionBody fileAppend = 11;
      Specified by:
      getFileAppend in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The fileAppend.
    • setFileAppend

       *
       Append data to the end of a file.
       
      .proto.FileAppendTransactionBody fileAppend = 11;
    • setFileAppend

       *
       Append data to the end of a file.
       
      .proto.FileAppendTransactionBody fileAppend = 11;
    • mergeFileAppend

       *
       Append data to the end of a file.
       
      .proto.FileAppendTransactionBody fileAppend = 11;
    • clearFileAppend

      public SchedulableTransactionBody.Builder clearFileAppend()
       *
       Append data to the end of a file.
       
      .proto.FileAppendTransactionBody fileAppend = 11;
    • hasFileCreate

      public boolean hasFileCreate()
       *
       Create a new file.
       
      .proto.FileCreateTransactionBody fileCreate = 12;
      Specified by:
      hasFileCreate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the fileCreate field is set.
    • getFileCreate

      public FileCreateTransactionBody getFileCreate()
       *
       Create a new file.
       
      .proto.FileCreateTransactionBody fileCreate = 12;
      Specified by:
      getFileCreate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The fileCreate.
    • setFileCreate

       *
       Create a new file.
       
      .proto.FileCreateTransactionBody fileCreate = 12;
    • setFileCreate

       *
       Create a new file.
       
      .proto.FileCreateTransactionBody fileCreate = 12;
    • mergeFileCreate

       *
       Create a new file.
       
      .proto.FileCreateTransactionBody fileCreate = 12;
    • clearFileCreate

      public SchedulableTransactionBody.Builder clearFileCreate()
       *
       Create a new file.
       
      .proto.FileCreateTransactionBody fileCreate = 12;
    • hasFileDelete

      public boolean hasFileDelete()
       *
       Delete a file.<br/>
       This will remove the content of the file, and mark the file as
       deleted.
       
      .proto.FileDeleteTransactionBody fileDelete = 13;
      Specified by:
      hasFileDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the fileDelete field is set.
    • getFileDelete

      public FileDeleteTransactionBody getFileDelete()
       *
       Delete a file.<br/>
       This will remove the content of the file, and mark the file as
       deleted.
       
      .proto.FileDeleteTransactionBody fileDelete = 13;
      Specified by:
      getFileDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The fileDelete.
    • setFileDelete

       *
       Delete a file.<br/>
       This will remove the content of the file, and mark the file as
       deleted.
       
      .proto.FileDeleteTransactionBody fileDelete = 13;
    • setFileDelete

       *
       Delete a file.<br/>
       This will remove the content of the file, and mark the file as
       deleted.
       
      .proto.FileDeleteTransactionBody fileDelete = 13;
    • mergeFileDelete

       *
       Delete a file.<br/>
       This will remove the content of the file, and mark the file as
       deleted.
       
      .proto.FileDeleteTransactionBody fileDelete = 13;
    • clearFileDelete

      public SchedulableTransactionBody.Builder clearFileDelete()
       *
       Delete a file.<br/>
       This will remove the content of the file, and mark the file as
       deleted.
       
      .proto.FileDeleteTransactionBody fileDelete = 13;
    • hasFileUpdate

      public boolean hasFileUpdate()
       *
       Modify a file.<br/>
       This may modify any metadata, and/or _replace_ the content.
       
      .proto.FileUpdateTransactionBody fileUpdate = 14;
      Specified by:
      hasFileUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the fileUpdate field is set.
    • getFileUpdate

      public FileUpdateTransactionBody getFileUpdate()
       *
       Modify a file.<br/>
       This may modify any metadata, and/or _replace_ the content.
       
      .proto.FileUpdateTransactionBody fileUpdate = 14;
      Specified by:
      getFileUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The fileUpdate.
    • setFileUpdate

       *
       Modify a file.<br/>
       This may modify any metadata, and/or _replace_ the content.
       
      .proto.FileUpdateTransactionBody fileUpdate = 14;
    • setFileUpdate

       *
       Modify a file.<br/>
       This may modify any metadata, and/or _replace_ the content.
       
      .proto.FileUpdateTransactionBody fileUpdate = 14;
    • mergeFileUpdate

       *
       Modify a file.<br/>
       This may modify any metadata, and/or _replace_ the content.
       
      .proto.FileUpdateTransactionBody fileUpdate = 14;
    • clearFileUpdate

      public SchedulableTransactionBody.Builder clearFileUpdate()
       *
       Modify a file.<br/>
       This may modify any metadata, and/or _replace_ the content.
       
      .proto.FileUpdateTransactionBody fileUpdate = 14;
    • hasSystemDelete

      public boolean hasSystemDelete()
       *
       Delete a file as an Hedera administrative function.<br/>
       This is a privileged operation.
       
      .proto.SystemDeleteTransactionBody systemDelete = 15;
      Specified by:
      hasSystemDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the systemDelete field is set.
    • getSystemDelete

      public SystemDeleteTransactionBody getSystemDelete()
       *
       Delete a file as an Hedera administrative function.<br/>
       This is a privileged operation.
       
      .proto.SystemDeleteTransactionBody systemDelete = 15;
      Specified by:
      getSystemDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The systemDelete.
    • setSystemDelete

       *
       Delete a file as an Hedera administrative function.<br/>
       This is a privileged operation.
       
      .proto.SystemDeleteTransactionBody systemDelete = 15;
    • setSystemDelete

       *
       Delete a file as an Hedera administrative function.<br/>
       This is a privileged operation.
       
      .proto.SystemDeleteTransactionBody systemDelete = 15;
    • mergeSystemDelete

       *
       Delete a file as an Hedera administrative function.<br/>
       This is a privileged operation.
       
      .proto.SystemDeleteTransactionBody systemDelete = 15;
    • clearSystemDelete

      public SchedulableTransactionBody.Builder clearSystemDelete()
       *
       Delete a file as an Hedera administrative function.<br/>
       This is a privileged operation.
       
      .proto.SystemDeleteTransactionBody systemDelete = 15;
    • hasSystemUndelete

      public boolean hasSystemUndelete()
       *
       Restore a file deleted via `systemDelete`.<br/>
       This is a privileged operation.
       
      .proto.SystemUndeleteTransactionBody systemUndelete = 16;
      Specified by:
      hasSystemUndelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the systemUndelete field is set.
    • getSystemUndelete

      public SystemUndeleteTransactionBody getSystemUndelete()
       *
       Restore a file deleted via `systemDelete`.<br/>
       This is a privileged operation.
       
      .proto.SystemUndeleteTransactionBody systemUndelete = 16;
      Specified by:
      getSystemUndelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The systemUndelete.
    • setSystemUndelete

       *
       Restore a file deleted via `systemDelete`.<br/>
       This is a privileged operation.
       
      .proto.SystemUndeleteTransactionBody systemUndelete = 16;
    • setSystemUndelete

       *
       Restore a file deleted via `systemDelete`.<br/>
       This is a privileged operation.
       
      .proto.SystemUndeleteTransactionBody systemUndelete = 16;
    • mergeSystemUndelete

       *
       Restore a file deleted via `systemDelete`.<br/>
       This is a privileged operation.
       
      .proto.SystemUndeleteTransactionBody systemUndelete = 16;
    • clearSystemUndelete

      public SchedulableTransactionBody.Builder clearSystemUndelete()
       *
       Restore a file deleted via `systemDelete`.<br/>
       This is a privileged operation.
       
      .proto.SystemUndeleteTransactionBody systemUndelete = 16;
    • hasFreeze

      public boolean hasFreeze()
       *
       Freeze the network.<br/>
       This is actually several possible operations, and the caller
       should examine the "freeze service" for more detail.<br/>
       This is a privileged operation.
       
      .proto.FreezeTransactionBody freeze = 17;
      Specified by:
      hasFreeze in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the freeze field is set.
    • getFreeze

      public FreezeTransactionBody getFreeze()
       *
       Freeze the network.<br/>
       This is actually several possible operations, and the caller
       should examine the "freeze service" for more detail.<br/>
       This is a privileged operation.
       
      .proto.FreezeTransactionBody freeze = 17;
      Specified by:
      getFreeze in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The freeze.
    • setFreeze

       *
       Freeze the network.<br/>
       This is actually several possible operations, and the caller
       should examine the "freeze service" for more detail.<br/>
       This is a privileged operation.
       
      .proto.FreezeTransactionBody freeze = 17;
    • setFreeze

       *
       Freeze the network.<br/>
       This is actually several possible operations, and the caller
       should examine the "freeze service" for more detail.<br/>
       This is a privileged operation.
       
      .proto.FreezeTransactionBody freeze = 17;
    • mergeFreeze

       *
       Freeze the network.<br/>
       This is actually several possible operations, and the caller
       should examine the "freeze service" for more detail.<br/>
       This is a privileged operation.
       
      .proto.FreezeTransactionBody freeze = 17;
    • clearFreeze

      public SchedulableTransactionBody.Builder clearFreeze()
       *
       Freeze the network.<br/>
       This is actually several possible operations, and the caller
       should examine the "freeze service" for more detail.<br/>
       This is a privileged operation.
       
      .proto.FreezeTransactionBody freeze = 17;
    • hasConsensusCreateTopic

      public boolean hasConsensusCreateTopic()
       *
       Create a topic.
       
      .proto.ConsensusCreateTopicTransactionBody consensusCreateTopic = 18;
      Specified by:
      hasConsensusCreateTopic in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the consensusCreateTopic field is set.
    • getConsensusCreateTopic

      public ConsensusCreateTopicTransactionBody getConsensusCreateTopic()
       *
       Create a topic.
       
      .proto.ConsensusCreateTopicTransactionBody consensusCreateTopic = 18;
      Specified by:
      getConsensusCreateTopic in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The consensusCreateTopic.
    • setConsensusCreateTopic

       *
       Create a topic.
       
      .proto.ConsensusCreateTopicTransactionBody consensusCreateTopic = 18;
    • setConsensusCreateTopic

      public SchedulableTransactionBody.Builder setConsensusCreateTopic(ConsensusCreateTopicTransactionBody.Builder builderForValue)
       *
       Create a topic.
       
      .proto.ConsensusCreateTopicTransactionBody consensusCreateTopic = 18;
    • mergeConsensusCreateTopic

       *
       Create a topic.
       
      .proto.ConsensusCreateTopicTransactionBody consensusCreateTopic = 18;
    • clearConsensusCreateTopic

      public SchedulableTransactionBody.Builder clearConsensusCreateTopic()
       *
       Create a topic.
       
      .proto.ConsensusCreateTopicTransactionBody consensusCreateTopic = 18;
    • hasConsensusUpdateTopic

      public boolean hasConsensusUpdateTopic()
       *
       Update a topic.
       
      .proto.ConsensusUpdateTopicTransactionBody consensusUpdateTopic = 19;
      Specified by:
      hasConsensusUpdateTopic in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the consensusUpdateTopic field is set.
    • getConsensusUpdateTopic

      public ConsensusUpdateTopicTransactionBody getConsensusUpdateTopic()
       *
       Update a topic.
       
      .proto.ConsensusUpdateTopicTransactionBody consensusUpdateTopic = 19;
      Specified by:
      getConsensusUpdateTopic in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The consensusUpdateTopic.
    • setConsensusUpdateTopic

       *
       Update a topic.
       
      .proto.ConsensusUpdateTopicTransactionBody consensusUpdateTopic = 19;
    • setConsensusUpdateTopic

      public SchedulableTransactionBody.Builder setConsensusUpdateTopic(ConsensusUpdateTopicTransactionBody.Builder builderForValue)
       *
       Update a topic.
       
      .proto.ConsensusUpdateTopicTransactionBody consensusUpdateTopic = 19;
    • mergeConsensusUpdateTopic

       *
       Update a topic.
       
      .proto.ConsensusUpdateTopicTransactionBody consensusUpdateTopic = 19;
    • clearConsensusUpdateTopic

      public SchedulableTransactionBody.Builder clearConsensusUpdateTopic()
       *
       Update a topic.
       
      .proto.ConsensusUpdateTopicTransactionBody consensusUpdateTopic = 19;
    • hasConsensusDeleteTopic

      public boolean hasConsensusDeleteTopic()
       *
       Delete a topic.
       
      .proto.ConsensusDeleteTopicTransactionBody consensusDeleteTopic = 20;
      Specified by:
      hasConsensusDeleteTopic in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the consensusDeleteTopic field is set.
    • getConsensusDeleteTopic

      public ConsensusDeleteTopicTransactionBody getConsensusDeleteTopic()
       *
       Delete a topic.
       
      .proto.ConsensusDeleteTopicTransactionBody consensusDeleteTopic = 20;
      Specified by:
      getConsensusDeleteTopic in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The consensusDeleteTopic.
    • setConsensusDeleteTopic

       *
       Delete a topic.
       
      .proto.ConsensusDeleteTopicTransactionBody consensusDeleteTopic = 20;
    • setConsensusDeleteTopic

      public SchedulableTransactionBody.Builder setConsensusDeleteTopic(ConsensusDeleteTopicTransactionBody.Builder builderForValue)
       *
       Delete a topic.
       
      .proto.ConsensusDeleteTopicTransactionBody consensusDeleteTopic = 20;
    • mergeConsensusDeleteTopic

       *
       Delete a topic.
       
      .proto.ConsensusDeleteTopicTransactionBody consensusDeleteTopic = 20;
    • clearConsensusDeleteTopic

      public SchedulableTransactionBody.Builder clearConsensusDeleteTopic()
       *
       Delete a topic.
       
      .proto.ConsensusDeleteTopicTransactionBody consensusDeleteTopic = 20;
    • hasConsensusSubmitMessage

      public boolean hasConsensusSubmitMessage()
       *
       Submit a message to a topic.<br/>
       A message may be "chunked", and submitted in parts, if the total
       message size exceeds the limit for a single transaction.
       
      .proto.ConsensusSubmitMessageTransactionBody consensusSubmitMessage = 21;
      Specified by:
      hasConsensusSubmitMessage in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the consensusSubmitMessage field is set.
    • getConsensusSubmitMessage

      public ConsensusSubmitMessageTransactionBody getConsensusSubmitMessage()
       *
       Submit a message to a topic.<br/>
       A message may be "chunked", and submitted in parts, if the total
       message size exceeds the limit for a single transaction.
       
      .proto.ConsensusSubmitMessageTransactionBody consensusSubmitMessage = 21;
      Specified by:
      getConsensusSubmitMessage in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The consensusSubmitMessage.
    • setConsensusSubmitMessage

       *
       Submit a message to a topic.<br/>
       A message may be "chunked", and submitted in parts, if the total
       message size exceeds the limit for a single transaction.
       
      .proto.ConsensusSubmitMessageTransactionBody consensusSubmitMessage = 21;
    • setConsensusSubmitMessage

      public SchedulableTransactionBody.Builder setConsensusSubmitMessage(ConsensusSubmitMessageTransactionBody.Builder builderForValue)
       *
       Submit a message to a topic.<br/>
       A message may be "chunked", and submitted in parts, if the total
       message size exceeds the limit for a single transaction.
       
      .proto.ConsensusSubmitMessageTransactionBody consensusSubmitMessage = 21;
    • mergeConsensusSubmitMessage

       *
       Submit a message to a topic.<br/>
       A message may be "chunked", and submitted in parts, if the total
       message size exceeds the limit for a single transaction.
       
      .proto.ConsensusSubmitMessageTransactionBody consensusSubmitMessage = 21;
    • clearConsensusSubmitMessage

      public SchedulableTransactionBody.Builder clearConsensusSubmitMessage()
       *
       Submit a message to a topic.<br/>
       A message may be "chunked", and submitted in parts, if the total
       message size exceeds the limit for a single transaction.
       
      .proto.ConsensusSubmitMessageTransactionBody consensusSubmitMessage = 21;
    • hasTokenCreation

      public boolean hasTokenCreation()
       *
       Create a new Hedera token.
       
      .proto.TokenCreateTransactionBody tokenCreation = 22;
      Specified by:
      hasTokenCreation in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenCreation field is set.
    • getTokenCreation

      public TokenCreateTransactionBody getTokenCreation()
       *
       Create a new Hedera token.
       
      .proto.TokenCreateTransactionBody tokenCreation = 22;
      Specified by:
      getTokenCreation in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenCreation.
    • setTokenCreation

       *
       Create a new Hedera token.
       
      .proto.TokenCreateTransactionBody tokenCreation = 22;
    • setTokenCreation

       *
       Create a new Hedera token.
       
      .proto.TokenCreateTransactionBody tokenCreation = 22;
    • mergeTokenCreation

       *
       Create a new Hedera token.
       
      .proto.TokenCreateTransactionBody tokenCreation = 22;
    • clearTokenCreation

      public SchedulableTransactionBody.Builder clearTokenCreation()
       *
       Create a new Hedera token.
       
      .proto.TokenCreateTransactionBody tokenCreation = 22;
    • hasTokenFreeze

      public boolean hasTokenFreeze()
       *
       Freeze an account with respect to a token.<br/>
       A frozen account cannot transact in that token until unfrozen.
       
      .proto.TokenFreezeAccountTransactionBody tokenFreeze = 23;
      Specified by:
      hasTokenFreeze in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenFreeze field is set.
    • getTokenFreeze

      public TokenFreezeAccountTransactionBody getTokenFreeze()
       *
       Freeze an account with respect to a token.<br/>
       A frozen account cannot transact in that token until unfrozen.
       
      .proto.TokenFreezeAccountTransactionBody tokenFreeze = 23;
      Specified by:
      getTokenFreeze in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenFreeze.
    • setTokenFreeze

       *
       Freeze an account with respect to a token.<br/>
       A frozen account cannot transact in that token until unfrozen.
       
      .proto.TokenFreezeAccountTransactionBody tokenFreeze = 23;
    • setTokenFreeze

       *
       Freeze an account with respect to a token.<br/>
       A frozen account cannot transact in that token until unfrozen.
       
      .proto.TokenFreezeAccountTransactionBody tokenFreeze = 23;
    • mergeTokenFreeze

       *
       Freeze an account with respect to a token.<br/>
       A frozen account cannot transact in that token until unfrozen.
       
      .proto.TokenFreezeAccountTransactionBody tokenFreeze = 23;
    • clearTokenFreeze

      public SchedulableTransactionBody.Builder clearTokenFreeze()
       *
       Freeze an account with respect to a token.<br/>
       A frozen account cannot transact in that token until unfrozen.
       
      .proto.TokenFreezeAccountTransactionBody tokenFreeze = 23;
    • hasTokenUnfreeze

      public boolean hasTokenUnfreeze()
       *
       Unfreeze an account with respect to a token.
       
      .proto.TokenUnfreezeAccountTransactionBody tokenUnfreeze = 24;
      Specified by:
      hasTokenUnfreeze in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenUnfreeze field is set.
    • getTokenUnfreeze

      public TokenUnfreezeAccountTransactionBody getTokenUnfreeze()
       *
       Unfreeze an account with respect to a token.
       
      .proto.TokenUnfreezeAccountTransactionBody tokenUnfreeze = 24;
      Specified by:
      getTokenUnfreeze in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenUnfreeze.
    • setTokenUnfreeze

       *
       Unfreeze an account with respect to a token.
       
      .proto.TokenUnfreezeAccountTransactionBody tokenUnfreeze = 24;
    • setTokenUnfreeze

       *
       Unfreeze an account with respect to a token.
       
      .proto.TokenUnfreezeAccountTransactionBody tokenUnfreeze = 24;
    • mergeTokenUnfreeze

       *
       Unfreeze an account with respect to a token.
       
      .proto.TokenUnfreezeAccountTransactionBody tokenUnfreeze = 24;
    • clearTokenUnfreeze

      public SchedulableTransactionBody.Builder clearTokenUnfreeze()
       *
       Unfreeze an account with respect to a token.
       
      .proto.TokenUnfreezeAccountTransactionBody tokenUnfreeze = 24;
    • hasTokenGrantKyc

      public boolean hasTokenGrantKyc()
       *
       Grant KYC to an account with respect to a token.<br/>
       KYC is generally a "know your customer" assertion that a
       responsible entity has sufficient information to positively
       identify the account holder to relevant authorities.
       
      .proto.TokenGrantKycTransactionBody tokenGrantKyc = 25;
      Specified by:
      hasTokenGrantKyc in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenGrantKyc field is set.
    • getTokenGrantKyc

      public TokenGrantKycTransactionBody getTokenGrantKyc()
       *
       Grant KYC to an account with respect to a token.<br/>
       KYC is generally a "know your customer" assertion that a
       responsible entity has sufficient information to positively
       identify the account holder to relevant authorities.
       
      .proto.TokenGrantKycTransactionBody tokenGrantKyc = 25;
      Specified by:
      getTokenGrantKyc in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenGrantKyc.
    • setTokenGrantKyc

       *
       Grant KYC to an account with respect to a token.<br/>
       KYC is generally a "know your customer" assertion that a
       responsible entity has sufficient information to positively
       identify the account holder to relevant authorities.
       
      .proto.TokenGrantKycTransactionBody tokenGrantKyc = 25;
    • setTokenGrantKyc

       *
       Grant KYC to an account with respect to a token.<br/>
       KYC is generally a "know your customer" assertion that a
       responsible entity has sufficient information to positively
       identify the account holder to relevant authorities.
       
      .proto.TokenGrantKycTransactionBody tokenGrantKyc = 25;
    • mergeTokenGrantKyc

       *
       Grant KYC to an account with respect to a token.<br/>
       KYC is generally a "know your customer" assertion that a
       responsible entity has sufficient information to positively
       identify the account holder to relevant authorities.
       
      .proto.TokenGrantKycTransactionBody tokenGrantKyc = 25;
    • clearTokenGrantKyc

      public SchedulableTransactionBody.Builder clearTokenGrantKyc()
       *
       Grant KYC to an account with respect to a token.<br/>
       KYC is generally a "know your customer" assertion that a
       responsible entity has sufficient information to positively
       identify the account holder to relevant authorities.
       
      .proto.TokenGrantKycTransactionBody tokenGrantKyc = 25;
    • hasTokenRevokeKyc

      public boolean hasTokenRevokeKyc()
       *
       Revoke KYC from an account with respect to a token.
       
      .proto.TokenRevokeKycTransactionBody tokenRevokeKyc = 26;
      Specified by:
      hasTokenRevokeKyc in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenRevokeKyc field is set.
    • getTokenRevokeKyc

      public TokenRevokeKycTransactionBody getTokenRevokeKyc()
       *
       Revoke KYC from an account with respect to a token.
       
      .proto.TokenRevokeKycTransactionBody tokenRevokeKyc = 26;
      Specified by:
      getTokenRevokeKyc in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenRevokeKyc.
    • setTokenRevokeKyc

       *
       Revoke KYC from an account with respect to a token.
       
      .proto.TokenRevokeKycTransactionBody tokenRevokeKyc = 26;
    • setTokenRevokeKyc

       *
       Revoke KYC from an account with respect to a token.
       
      .proto.TokenRevokeKycTransactionBody tokenRevokeKyc = 26;
    • mergeTokenRevokeKyc

       *
       Revoke KYC from an account with respect to a token.
       
      .proto.TokenRevokeKycTransactionBody tokenRevokeKyc = 26;
    • clearTokenRevokeKyc

      public SchedulableTransactionBody.Builder clearTokenRevokeKyc()
       *
       Revoke KYC from an account with respect to a token.
       
      .proto.TokenRevokeKycTransactionBody tokenRevokeKyc = 26;
    • hasTokenDeletion

      public boolean hasTokenDeletion()
       *
       Deletes an Hedera token.<br/>
       The token will be marked deleted.
       
      .proto.TokenDeleteTransactionBody tokenDeletion = 27;
      Specified by:
      hasTokenDeletion in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenDeletion field is set.
    • getTokenDeletion

      public TokenDeleteTransactionBody getTokenDeletion()
       *
       Deletes an Hedera token.<br/>
       The token will be marked deleted.
       
      .proto.TokenDeleteTransactionBody tokenDeletion = 27;
      Specified by:
      getTokenDeletion in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenDeletion.
    • setTokenDeletion

       *
       Deletes an Hedera token.<br/>
       The token will be marked deleted.
       
      .proto.TokenDeleteTransactionBody tokenDeletion = 27;
    • setTokenDeletion

       *
       Deletes an Hedera token.<br/>
       The token will be marked deleted.
       
      .proto.TokenDeleteTransactionBody tokenDeletion = 27;
    • mergeTokenDeletion

       *
       Deletes an Hedera token.<br/>
       The token will be marked deleted.
       
      .proto.TokenDeleteTransactionBody tokenDeletion = 27;
    • clearTokenDeletion

      public SchedulableTransactionBody.Builder clearTokenDeletion()
       *
       Deletes an Hedera token.<br/>
       The token will be marked deleted.
       
      .proto.TokenDeleteTransactionBody tokenDeletion = 27;
    • hasTokenUpdate

      public boolean hasTokenUpdate()
       *
       Update an Hedera token.<br/>
       Depending on what fields are to be modified, the signature
       requirements will vary. See `TokenUpdateTransactionBody` for
       further detail.
       
      .proto.TokenUpdateTransactionBody tokenUpdate = 28;
      Specified by:
      hasTokenUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenUpdate field is set.
    • getTokenUpdate

      public TokenUpdateTransactionBody getTokenUpdate()
       *
       Update an Hedera token.<br/>
       Depending on what fields are to be modified, the signature
       requirements will vary. See `TokenUpdateTransactionBody` for
       further detail.
       
      .proto.TokenUpdateTransactionBody tokenUpdate = 28;
      Specified by:
      getTokenUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenUpdate.
    • setTokenUpdate

       *
       Update an Hedera token.<br/>
       Depending on what fields are to be modified, the signature
       requirements will vary. See `TokenUpdateTransactionBody` for
       further detail.
       
      .proto.TokenUpdateTransactionBody tokenUpdate = 28;
    • setTokenUpdate

       *
       Update an Hedera token.<br/>
       Depending on what fields are to be modified, the signature
       requirements will vary. See `TokenUpdateTransactionBody` for
       further detail.
       
      .proto.TokenUpdateTransactionBody tokenUpdate = 28;
    • mergeTokenUpdate

       *
       Update an Hedera token.<br/>
       Depending on what fields are to be modified, the signature
       requirements will vary. See `TokenUpdateTransactionBody` for
       further detail.
       
      .proto.TokenUpdateTransactionBody tokenUpdate = 28;
    • clearTokenUpdate

      public SchedulableTransactionBody.Builder clearTokenUpdate()
       *
       Update an Hedera token.<br/>
       Depending on what fields are to be modified, the signature
       requirements will vary. See `TokenUpdateTransactionBody` for
       further detail.
       
      .proto.TokenUpdateTransactionBody tokenUpdate = 28;
    • hasTokenMint

      public boolean hasTokenMint()
       *
       Mint new tokens.<br/>
       All minted tokens will be delivered to the treasury account for
       the token type. The "mint key" for the token must sign this
       transaction.
       
      .proto.TokenMintTransactionBody tokenMint = 29;
      Specified by:
      hasTokenMint in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenMint field is set.
    • getTokenMint

      public TokenMintTransactionBody getTokenMint()
       *
       Mint new tokens.<br/>
       All minted tokens will be delivered to the treasury account for
       the token type. The "mint key" for the token must sign this
       transaction.
       
      .proto.TokenMintTransactionBody tokenMint = 29;
      Specified by:
      getTokenMint in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenMint.
    • setTokenMint

       *
       Mint new tokens.<br/>
       All minted tokens will be delivered to the treasury account for
       the token type. The "mint key" for the token must sign this
       transaction.
       
      .proto.TokenMintTransactionBody tokenMint = 29;
    • setTokenMint

       *
       Mint new tokens.<br/>
       All minted tokens will be delivered to the treasury account for
       the token type. The "mint key" for the token must sign this
       transaction.
       
      .proto.TokenMintTransactionBody tokenMint = 29;
    • mergeTokenMint

       *
       Mint new tokens.<br/>
       All minted tokens will be delivered to the treasury account for
       the token type. The "mint key" for the token must sign this
       transaction.
       
      .proto.TokenMintTransactionBody tokenMint = 29;
    • clearTokenMint

      public SchedulableTransactionBody.Builder clearTokenMint()
       *
       Mint new tokens.<br/>
       All minted tokens will be delivered to the treasury account for
       the token type. The "mint key" for the token must sign this
       transaction.
       
      .proto.TokenMintTransactionBody tokenMint = 29;
    • hasTokenBurn

      public boolean hasTokenBurn()
       *
       Burn tokens from the treasury account.<br/>
       The "burn key" for the token must sign this transaction.
       
      .proto.TokenBurnTransactionBody tokenBurn = 30;
      Specified by:
      hasTokenBurn in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenBurn field is set.
    • getTokenBurn

      public TokenBurnTransactionBody getTokenBurn()
       *
       Burn tokens from the treasury account.<br/>
       The "burn key" for the token must sign this transaction.
       
      .proto.TokenBurnTransactionBody tokenBurn = 30;
      Specified by:
      getTokenBurn in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenBurn.
    • setTokenBurn

       *
       Burn tokens from the treasury account.<br/>
       The "burn key" for the token must sign this transaction.
       
      .proto.TokenBurnTransactionBody tokenBurn = 30;
    • setTokenBurn

       *
       Burn tokens from the treasury account.<br/>
       The "burn key" for the token must sign this transaction.
       
      .proto.TokenBurnTransactionBody tokenBurn = 30;
    • mergeTokenBurn

       *
       Burn tokens from the treasury account.<br/>
       The "burn key" for the token must sign this transaction.
       
      .proto.TokenBurnTransactionBody tokenBurn = 30;
    • clearTokenBurn

      public SchedulableTransactionBody.Builder clearTokenBurn()
       *
       Burn tokens from the treasury account.<br/>
       The "burn key" for the token must sign this transaction.
       
      .proto.TokenBurnTransactionBody tokenBurn = 30;
    • hasTokenWipe

      public boolean hasTokenWipe()
       *
       Wipe tokens from an account.<br/>
       This will remove a specified amount of fungible/common tokens or
       a specified list of non-fungible/unique serial numbered tokens
       of a given token type from an Hedera account. The removed tokens
       are _burned_ as if by a `tokenBurn` transaction.<br/>
       The "wipe key" for the token must sign this transaction.
       
      .proto.TokenWipeAccountTransactionBody tokenWipe = 31;
      Specified by:
      hasTokenWipe in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenWipe field is set.
    • getTokenWipe

      public TokenWipeAccountTransactionBody getTokenWipe()
       *
       Wipe tokens from an account.<br/>
       This will remove a specified amount of fungible/common tokens or
       a specified list of non-fungible/unique serial numbered tokens
       of a given token type from an Hedera account. The removed tokens
       are _burned_ as if by a `tokenBurn` transaction.<br/>
       The "wipe key" for the token must sign this transaction.
       
      .proto.TokenWipeAccountTransactionBody tokenWipe = 31;
      Specified by:
      getTokenWipe in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenWipe.
    • setTokenWipe

       *
       Wipe tokens from an account.<br/>
       This will remove a specified amount of fungible/common tokens or
       a specified list of non-fungible/unique serial numbered tokens
       of a given token type from an Hedera account. The removed tokens
       are _burned_ as if by a `tokenBurn` transaction.<br/>
       The "wipe key" for the token must sign this transaction.
       
      .proto.TokenWipeAccountTransactionBody tokenWipe = 31;
    • setTokenWipe

       *
       Wipe tokens from an account.<br/>
       This will remove a specified amount of fungible/common tokens or
       a specified list of non-fungible/unique serial numbered tokens
       of a given token type from an Hedera account. The removed tokens
       are _burned_ as if by a `tokenBurn` transaction.<br/>
       The "wipe key" for the token must sign this transaction.
       
      .proto.TokenWipeAccountTransactionBody tokenWipe = 31;
    • mergeTokenWipe

       *
       Wipe tokens from an account.<br/>
       This will remove a specified amount of fungible/common tokens or
       a specified list of non-fungible/unique serial numbered tokens
       of a given token type from an Hedera account. The removed tokens
       are _burned_ as if by a `tokenBurn` transaction.<br/>
       The "wipe key" for the token must sign this transaction.
       
      .proto.TokenWipeAccountTransactionBody tokenWipe = 31;
    • clearTokenWipe

      public SchedulableTransactionBody.Builder clearTokenWipe()
       *
       Wipe tokens from an account.<br/>
       This will remove a specified amount of fungible/common tokens or
       a specified list of non-fungible/unique serial numbered tokens
       of a given token type from an Hedera account. The removed tokens
       are _burned_ as if by a `tokenBurn` transaction.<br/>
       The "wipe key" for the token must sign this transaction.
       
      .proto.TokenWipeAccountTransactionBody tokenWipe = 31;
    • hasTokenAssociate

      public boolean hasTokenAssociate()
       *
       Associate tokens to an account.
       
      .proto.TokenAssociateTransactionBody tokenAssociate = 32;
      Specified by:
      hasTokenAssociate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenAssociate field is set.
    • getTokenAssociate

      public TokenAssociateTransactionBody getTokenAssociate()
       *
       Associate tokens to an account.
       
      .proto.TokenAssociateTransactionBody tokenAssociate = 32;
      Specified by:
      getTokenAssociate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenAssociate.
    • setTokenAssociate

       *
       Associate tokens to an account.
       
      .proto.TokenAssociateTransactionBody tokenAssociate = 32;
    • setTokenAssociate

       *
       Associate tokens to an account.
       
      .proto.TokenAssociateTransactionBody tokenAssociate = 32;
    • mergeTokenAssociate

       *
       Associate tokens to an account.
       
      .proto.TokenAssociateTransactionBody tokenAssociate = 32;
    • clearTokenAssociate

      public SchedulableTransactionBody.Builder clearTokenAssociate()
       *
       Associate tokens to an account.
       
      .proto.TokenAssociateTransactionBody tokenAssociate = 32;
    • hasTokenDissociate

      public boolean hasTokenDissociate()
       *
       Dissociate tokens from an account.
       
      .proto.TokenDissociateTransactionBody tokenDissociate = 33;
      Specified by:
      hasTokenDissociate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenDissociate field is set.
    • getTokenDissociate

      public TokenDissociateTransactionBody getTokenDissociate()
       *
       Dissociate tokens from an account.
       
      .proto.TokenDissociateTransactionBody tokenDissociate = 33;
      Specified by:
      getTokenDissociate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenDissociate.
    • setTokenDissociate

       *
       Dissociate tokens from an account.
       
      .proto.TokenDissociateTransactionBody tokenDissociate = 33;
    • setTokenDissociate

       *
       Dissociate tokens from an account.
       
      .proto.TokenDissociateTransactionBody tokenDissociate = 33;
    • mergeTokenDissociate

       *
       Dissociate tokens from an account.
       
      .proto.TokenDissociateTransactionBody tokenDissociate = 33;
    • clearTokenDissociate

      public SchedulableTransactionBody.Builder clearTokenDissociate()
       *
       Dissociate tokens from an account.
       
      .proto.TokenDissociateTransactionBody tokenDissociate = 33;
    • hasScheduleDelete

      public boolean hasScheduleDelete()
       *
       Delete a schedule.<br/>
       The schedule will be marked as deleted.
       
      .proto.ScheduleDeleteTransactionBody scheduleDelete = 34;
      Specified by:
      hasScheduleDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the scheduleDelete field is set.
    • getScheduleDelete

      public ScheduleDeleteTransactionBody getScheduleDelete()
       *
       Delete a schedule.<br/>
       The schedule will be marked as deleted.
       
      .proto.ScheduleDeleteTransactionBody scheduleDelete = 34;
      Specified by:
      getScheduleDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The scheduleDelete.
    • setScheduleDelete

       *
       Delete a schedule.<br/>
       The schedule will be marked as deleted.
       
      .proto.ScheduleDeleteTransactionBody scheduleDelete = 34;
    • setScheduleDelete

       *
       Delete a schedule.<br/>
       The schedule will be marked as deleted.
       
      .proto.ScheduleDeleteTransactionBody scheduleDelete = 34;
    • mergeScheduleDelete

       *
       Delete a schedule.<br/>
       The schedule will be marked as deleted.
       
      .proto.ScheduleDeleteTransactionBody scheduleDelete = 34;
    • clearScheduleDelete

      public SchedulableTransactionBody.Builder clearScheduleDelete()
       *
       Delete a schedule.<br/>
       The schedule will be marked as deleted.
       
      .proto.ScheduleDeleteTransactionBody scheduleDelete = 34;
    • hasTokenPause

      public boolean hasTokenPause()
       *
       Pause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenPauseTransactionBody token_pause = 35;
      Specified by:
      hasTokenPause in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenPause field is set.
    • getTokenPause

      public TokenPauseTransactionBody getTokenPause()
       *
       Pause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenPauseTransactionBody token_pause = 35;
      Specified by:
      getTokenPause in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenPause.
    • setTokenPause

       *
       Pause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenPauseTransactionBody token_pause = 35;
    • setTokenPause

       *
       Pause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenPauseTransactionBody token_pause = 35;
    • mergeTokenPause

       *
       Pause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenPauseTransactionBody token_pause = 35;
    • clearTokenPause

      public SchedulableTransactionBody.Builder clearTokenPause()
       *
       Pause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenPauseTransactionBody token_pause = 35;
    • hasTokenUnpause

      public boolean hasTokenUnpause()
       *
       Unpause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenUnpauseTransactionBody token_unpause = 36;
      Specified by:
      hasTokenUnpause in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenUnpause field is set.
    • getTokenUnpause

      public TokenUnpauseTransactionBody getTokenUnpause()
       *
       Unpause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenUnpauseTransactionBody token_unpause = 36;
      Specified by:
      getTokenUnpause in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenUnpause.
    • setTokenUnpause

       *
       Unpause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenUnpauseTransactionBody token_unpause = 36;
    • setTokenUnpause

       *
       Unpause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenUnpauseTransactionBody token_unpause = 36;
    • mergeTokenUnpause

       *
       Unpause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenUnpauseTransactionBody token_unpause = 36;
    • clearTokenUnpause

      public SchedulableTransactionBody.Builder clearTokenUnpause()
       *
       Unpause a Token.<br/>
       This transaction must be signed by the "pause key" for the token.
       
      .proto.TokenUnpauseTransactionBody token_unpause = 36;
    • hasCryptoApproveAllowance

      public boolean hasCryptoApproveAllowance()
       *
       Add one or more approved allowances for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoApproveAllowanceTransactionBody cryptoApproveAllowance = 37;
      Specified by:
      hasCryptoApproveAllowance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the cryptoApproveAllowance field is set.
    • getCryptoApproveAllowance

      public CryptoApproveAllowanceTransactionBody getCryptoApproveAllowance()
       *
       Add one or more approved allowances for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoApproveAllowanceTransactionBody cryptoApproveAllowance = 37;
      Specified by:
      getCryptoApproveAllowance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The cryptoApproveAllowance.
    • setCryptoApproveAllowance

       *
       Add one or more approved allowances for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoApproveAllowanceTransactionBody cryptoApproveAllowance = 37;
    • setCryptoApproveAllowance

      public SchedulableTransactionBody.Builder setCryptoApproveAllowance(CryptoApproveAllowanceTransactionBody.Builder builderForValue)
       *
       Add one or more approved allowances for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoApproveAllowanceTransactionBody cryptoApproveAllowance = 37;
    • mergeCryptoApproveAllowance

       *
       Add one or more approved allowances for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoApproveAllowanceTransactionBody cryptoApproveAllowance = 37;
    • clearCryptoApproveAllowance

      public SchedulableTransactionBody.Builder clearCryptoApproveAllowance()
       *
       Add one or more approved allowances for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoApproveAllowanceTransactionBody cryptoApproveAllowance = 37;
    • hasCryptoDeleteAllowance

      public boolean hasCryptoDeleteAllowance()
       *
       Delete one or more approvals for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoDeleteAllowanceTransactionBody cryptoDeleteAllowance = 38;
      Specified by:
      hasCryptoDeleteAllowance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the cryptoDeleteAllowance field is set.
    • getCryptoDeleteAllowance

      public CryptoDeleteAllowanceTransactionBody getCryptoDeleteAllowance()
       *
       Delete one or more approvals for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoDeleteAllowanceTransactionBody cryptoDeleteAllowance = 38;
      Specified by:
      getCryptoDeleteAllowance in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The cryptoDeleteAllowance.
    • setCryptoDeleteAllowance

       *
       Delete one or more approvals for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoDeleteAllowanceTransactionBody cryptoDeleteAllowance = 38;
    • setCryptoDeleteAllowance

      public SchedulableTransactionBody.Builder setCryptoDeleteAllowance(CryptoDeleteAllowanceTransactionBody.Builder builderForValue)
       *
       Delete one or more approvals for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoDeleteAllowanceTransactionBody cryptoDeleteAllowance = 38;
    • mergeCryptoDeleteAllowance

       *
       Delete one or more approvals for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoDeleteAllowanceTransactionBody cryptoDeleteAllowance = 38;
    • clearCryptoDeleteAllowance

      public SchedulableTransactionBody.Builder clearCryptoDeleteAllowance()
       *
       Delete one or more approvals for spenders to transfer the
       paying account's hbar or tokens.
       
      .proto.CryptoDeleteAllowanceTransactionBody cryptoDeleteAllowance = 38;
    • hasTokenFeeScheduleUpdate

      public boolean hasTokenFeeScheduleUpdate()
       *
       Update the custom fee schedule for a token.<br/>
       This transaction must be signed by the "fee schedule key"
       for the token.
       
      .proto.TokenFeeScheduleUpdateTransactionBody token_fee_schedule_update = 39;
      Specified by:
      hasTokenFeeScheduleUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenFeeScheduleUpdate field is set.
    • getTokenFeeScheduleUpdate

      public TokenFeeScheduleUpdateTransactionBody getTokenFeeScheduleUpdate()
       *
       Update the custom fee schedule for a token.<br/>
       This transaction must be signed by the "fee schedule key"
       for the token.
       
      .proto.TokenFeeScheduleUpdateTransactionBody token_fee_schedule_update = 39;
      Specified by:
      getTokenFeeScheduleUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenFeeScheduleUpdate.
    • setTokenFeeScheduleUpdate

       *
       Update the custom fee schedule for a token.<br/>
       This transaction must be signed by the "fee schedule key"
       for the token.
       
      .proto.TokenFeeScheduleUpdateTransactionBody token_fee_schedule_update = 39;
    • setTokenFeeScheduleUpdate

      public SchedulableTransactionBody.Builder setTokenFeeScheduleUpdate(TokenFeeScheduleUpdateTransactionBody.Builder builderForValue)
       *
       Update the custom fee schedule for a token.<br/>
       This transaction must be signed by the "fee schedule key"
       for the token.
       
      .proto.TokenFeeScheduleUpdateTransactionBody token_fee_schedule_update = 39;
    • mergeTokenFeeScheduleUpdate

       *
       Update the custom fee schedule for a token.<br/>
       This transaction must be signed by the "fee schedule key"
       for the token.
       
      .proto.TokenFeeScheduleUpdateTransactionBody token_fee_schedule_update = 39;
    • clearTokenFeeScheduleUpdate

      public SchedulableTransactionBody.Builder clearTokenFeeScheduleUpdate()
       *
       Update the custom fee schedule for a token.<br/>
       This transaction must be signed by the "fee schedule key"
       for the token.
       
      .proto.TokenFeeScheduleUpdateTransactionBody token_fee_schedule_update = 39;
    • hasUtilPrng

      public boolean hasUtilPrng()
       *
       Provide a deterministic pseudorandom number based on network state.
       
      .proto.UtilPrngTransactionBody util_prng = 40;
      Specified by:
      hasUtilPrng in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the utilPrng field is set.
    • getUtilPrng

      public UtilPrngTransactionBody getUtilPrng()
       *
       Provide a deterministic pseudorandom number based on network state.
       
      .proto.UtilPrngTransactionBody util_prng = 40;
      Specified by:
      getUtilPrng in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The utilPrng.
    • setUtilPrng

       *
       Provide a deterministic pseudorandom number based on network state.
       
      .proto.UtilPrngTransactionBody util_prng = 40;
    • setUtilPrng

       *
       Provide a deterministic pseudorandom number based on network state.
       
      .proto.UtilPrngTransactionBody util_prng = 40;
    • mergeUtilPrng

       *
       Provide a deterministic pseudorandom number based on network state.
       
      .proto.UtilPrngTransactionBody util_prng = 40;
    • clearUtilPrng

      public SchedulableTransactionBody.Builder clearUtilPrng()
       *
       Provide a deterministic pseudorandom number based on network state.
       
      .proto.UtilPrngTransactionBody util_prng = 40;
    • hasTokenUpdateNfts

      public boolean hasTokenUpdateNfts()
       *
       Update one or more non-fungible/unique tokens.<br/>
       This will update metadata for one or more serial numbers within
       a collection (token type).
       
      .proto.TokenUpdateNftsTransactionBody token_update_nfts = 41;
      Specified by:
      hasTokenUpdateNfts in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenUpdateNfts field is set.
    • getTokenUpdateNfts

      public TokenUpdateNftsTransactionBody getTokenUpdateNfts()
       *
       Update one or more non-fungible/unique tokens.<br/>
       This will update metadata for one or more serial numbers within
       a collection (token type).
       
      .proto.TokenUpdateNftsTransactionBody token_update_nfts = 41;
      Specified by:
      getTokenUpdateNfts in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenUpdateNfts.
    • setTokenUpdateNfts

       *
       Update one or more non-fungible/unique tokens.<br/>
       This will update metadata for one or more serial numbers within
       a collection (token type).
       
      .proto.TokenUpdateNftsTransactionBody token_update_nfts = 41;
    • setTokenUpdateNfts

       *
       Update one or more non-fungible/unique tokens.<br/>
       This will update metadata for one or more serial numbers within
       a collection (token type).
       
      .proto.TokenUpdateNftsTransactionBody token_update_nfts = 41;
    • mergeTokenUpdateNfts

       *
       Update one or more non-fungible/unique tokens.<br/>
       This will update metadata for one or more serial numbers within
       a collection (token type).
       
      .proto.TokenUpdateNftsTransactionBody token_update_nfts = 41;
    • clearTokenUpdateNfts

      public SchedulableTransactionBody.Builder clearTokenUpdateNfts()
       *
       Update one or more non-fungible/unique tokens.<br/>
       This will update metadata for one or more serial numbers within
       a collection (token type).
       
      .proto.TokenUpdateNftsTransactionBody token_update_nfts = 41;
    • hasNodeCreate

      public boolean hasNodeCreate()
       *
       Create a new node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeCreateTransactionBody nodeCreate = 42;
      Specified by:
      hasNodeCreate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the nodeCreate field is set.
    • getNodeCreate

      public NodeCreateTransactionBody getNodeCreate()
       *
       Create a new node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeCreateTransactionBody nodeCreate = 42;
      Specified by:
      getNodeCreate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The nodeCreate.
    • setNodeCreate

       *
       Create a new node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeCreateTransactionBody nodeCreate = 42;
    • setNodeCreate

       *
       Create a new node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeCreateTransactionBody nodeCreate = 42;
    • mergeNodeCreate

       *
       Create a new node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeCreateTransactionBody nodeCreate = 42;
    • clearNodeCreate

      public SchedulableTransactionBody.Builder clearNodeCreate()
       *
       Create a new node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeCreateTransactionBody nodeCreate = 42;
    • hasNodeUpdate

      public boolean hasNodeUpdate()
       *
       Update a node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeUpdateTransactionBody nodeUpdate = 43;
      Specified by:
      hasNodeUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the nodeUpdate field is set.
    • getNodeUpdate

      public NodeUpdateTransactionBody getNodeUpdate()
       *
       Update a node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeUpdateTransactionBody nodeUpdate = 43;
      Specified by:
      getNodeUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The nodeUpdate.
    • setNodeUpdate

       *
       Update a node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeUpdateTransactionBody nodeUpdate = 43;
    • setNodeUpdate

       *
       Update a node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeUpdateTransactionBody nodeUpdate = 43;
    • mergeNodeUpdate

       *
       Update a node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeUpdateTransactionBody nodeUpdate = 43;
    • clearNodeUpdate

      public SchedulableTransactionBody.Builder clearNodeUpdate()
       *
       Update a node in the network address book.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeUpdateTransactionBody nodeUpdate = 43;
    • hasNodeDelete

      public boolean hasNodeDelete()
       *
       Delete a node from the network address book.<br/>
       This will mark the node as deleted.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeDeleteTransactionBody nodeDelete = 44;
      Specified by:
      hasNodeDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the nodeDelete field is set.
    • getNodeDelete

      public NodeDeleteTransactionBody getNodeDelete()
       *
       Delete a node from the network address book.<br/>
       This will mark the node as deleted.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeDeleteTransactionBody nodeDelete = 44;
      Specified by:
      getNodeDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The nodeDelete.
    • setNodeDelete

       *
       Delete a node from the network address book.<br/>
       This will mark the node as deleted.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeDeleteTransactionBody nodeDelete = 44;
    • setNodeDelete

       *
       Delete a node from the network address book.<br/>
       This will mark the node as deleted.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeDeleteTransactionBody nodeDelete = 44;
    • mergeNodeDelete

       *
       Delete a node from the network address book.<br/>
       This will mark the node as deleted.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeDeleteTransactionBody nodeDelete = 44;
    • clearNodeDelete

      public SchedulableTransactionBody.Builder clearNodeDelete()
       *
       Delete a node from the network address book.<br/>
       This will mark the node as deleted.<br/>
       This is a privileged operation.
       
      .com.hedera.hapi.node.addressbook.NodeDeleteTransactionBody nodeDelete = 44;
    • hasTokenReject

      public boolean hasTokenReject()
       *
       "Reject" undesired tokens.<br/>
       This transaction will transfer one or more tokens or token
       balances held by the requesting account to the treasury
       for each token type.
       <p>
       Each transfer MUST be one of the following:
       <ul>
       <li>A single non-fungible/unique token.</li>
       <li>The full balance held for a fungible/common
       token type.</li>
       </ul>
       When complete, the requesting account SHALL NOT hold the
       rejected tokens.<br/>
       Custom fees and royalties defined for the tokens rejected
       SHALL NOT be charged for this transaction.
       
      .proto.TokenRejectTransactionBody tokenReject = 45;
      Specified by:
      hasTokenReject in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenReject field is set.
    • getTokenReject

      public TokenRejectTransactionBody getTokenReject()
       *
       "Reject" undesired tokens.<br/>
       This transaction will transfer one or more tokens or token
       balances held by the requesting account to the treasury
       for each token type.
       <p>
       Each transfer MUST be one of the following:
       <ul>
       <li>A single non-fungible/unique token.</li>
       <li>The full balance held for a fungible/common
       token type.</li>
       </ul>
       When complete, the requesting account SHALL NOT hold the
       rejected tokens.<br/>
       Custom fees and royalties defined for the tokens rejected
       SHALL NOT be charged for this transaction.
       
      .proto.TokenRejectTransactionBody tokenReject = 45;
      Specified by:
      getTokenReject in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenReject.
    • setTokenReject

       *
       "Reject" undesired tokens.<br/>
       This transaction will transfer one or more tokens or token
       balances held by the requesting account to the treasury
       for each token type.
       <p>
       Each transfer MUST be one of the following:
       <ul>
       <li>A single non-fungible/unique token.</li>
       <li>The full balance held for a fungible/common
       token type.</li>
       </ul>
       When complete, the requesting account SHALL NOT hold the
       rejected tokens.<br/>
       Custom fees and royalties defined for the tokens rejected
       SHALL NOT be charged for this transaction.
       
      .proto.TokenRejectTransactionBody tokenReject = 45;
    • setTokenReject

       *
       "Reject" undesired tokens.<br/>
       This transaction will transfer one or more tokens or token
       balances held by the requesting account to the treasury
       for each token type.
       <p>
       Each transfer MUST be one of the following:
       <ul>
       <li>A single non-fungible/unique token.</li>
       <li>The full balance held for a fungible/common
       token type.</li>
       </ul>
       When complete, the requesting account SHALL NOT hold the
       rejected tokens.<br/>
       Custom fees and royalties defined for the tokens rejected
       SHALL NOT be charged for this transaction.
       
      .proto.TokenRejectTransactionBody tokenReject = 45;
    • mergeTokenReject

       *
       "Reject" undesired tokens.<br/>
       This transaction will transfer one or more tokens or token
       balances held by the requesting account to the treasury
       for each token type.
       <p>
       Each transfer MUST be one of the following:
       <ul>
       <li>A single non-fungible/unique token.</li>
       <li>The full balance held for a fungible/common
       token type.</li>
       </ul>
       When complete, the requesting account SHALL NOT hold the
       rejected tokens.<br/>
       Custom fees and royalties defined for the tokens rejected
       SHALL NOT be charged for this transaction.
       
      .proto.TokenRejectTransactionBody tokenReject = 45;
    • clearTokenReject

      public SchedulableTransactionBody.Builder clearTokenReject()
       *
       "Reject" undesired tokens.<br/>
       This transaction will transfer one or more tokens or token
       balances held by the requesting account to the treasury
       for each token type.
       <p>
       Each transfer MUST be one of the following:
       <ul>
       <li>A single non-fungible/unique token.</li>
       <li>The full balance held for a fungible/common
       token type.</li>
       </ul>
       When complete, the requesting account SHALL NOT hold the
       rejected tokens.<br/>
       Custom fees and royalties defined for the tokens rejected
       SHALL NOT be charged for this transaction.
       
      .proto.TokenRejectTransactionBody tokenReject = 45;
    • hasTokenCancelAirdrop

      public boolean hasTokenCancelAirdrop()
       *
       Cancel an "airdrop".<br/>
       This transaction cancels a pending airdrop for one or more
       recipients.
       <p>
       The airdrop(s) to cancel MUST be pending, and not claimed.<br/>
       
      .proto.TokenCancelAirdropTransactionBody tokenCancelAirdrop = 46;
      Specified by:
      hasTokenCancelAirdrop in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenCancelAirdrop field is set.
    • getTokenCancelAirdrop

      public TokenCancelAirdropTransactionBody getTokenCancelAirdrop()
       *
       Cancel an "airdrop".<br/>
       This transaction cancels a pending airdrop for one or more
       recipients.
       <p>
       The airdrop(s) to cancel MUST be pending, and not claimed.<br/>
       
      .proto.TokenCancelAirdropTransactionBody tokenCancelAirdrop = 46;
      Specified by:
      getTokenCancelAirdrop in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenCancelAirdrop.
    • setTokenCancelAirdrop

       *
       Cancel an "airdrop".<br/>
       This transaction cancels a pending airdrop for one or more
       recipients.
       <p>
       The airdrop(s) to cancel MUST be pending, and not claimed.<br/>
       
      .proto.TokenCancelAirdropTransactionBody tokenCancelAirdrop = 46;
    • setTokenCancelAirdrop

      public SchedulableTransactionBody.Builder setTokenCancelAirdrop(TokenCancelAirdropTransactionBody.Builder builderForValue)
       *
       Cancel an "airdrop".<br/>
       This transaction cancels a pending airdrop for one or more
       recipients.
       <p>
       The airdrop(s) to cancel MUST be pending, and not claimed.<br/>
       
      .proto.TokenCancelAirdropTransactionBody tokenCancelAirdrop = 46;
    • mergeTokenCancelAirdrop

       *
       Cancel an "airdrop".<br/>
       This transaction cancels a pending airdrop for one or more
       recipients.
       <p>
       The airdrop(s) to cancel MUST be pending, and not claimed.<br/>
       
      .proto.TokenCancelAirdropTransactionBody tokenCancelAirdrop = 46;
    • clearTokenCancelAirdrop

      public SchedulableTransactionBody.Builder clearTokenCancelAirdrop()
       *
       Cancel an "airdrop".<br/>
       This transaction cancels a pending airdrop for one or more
       recipients.
       <p>
       The airdrop(s) to cancel MUST be pending, and not claimed.<br/>
       
      .proto.TokenCancelAirdropTransactionBody tokenCancelAirdrop = 46;
    • hasTokenClaimAirdrop

      public boolean hasTokenClaimAirdrop()
       *
       Claim an "airdrop".
       This transaction "claims" one or more pending "airdrops".
       <p>
       The airdrop(s) to claim MUST be pending, and not
       already claimed.<br/>
       
      .proto.TokenClaimAirdropTransactionBody tokenClaimAirdrop = 47;
      Specified by:
      hasTokenClaimAirdrop in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenClaimAirdrop field is set.
    • getTokenClaimAirdrop

      public TokenClaimAirdropTransactionBody getTokenClaimAirdrop()
       *
       Claim an "airdrop".
       This transaction "claims" one or more pending "airdrops".
       <p>
       The airdrop(s) to claim MUST be pending, and not
       already claimed.<br/>
       
      .proto.TokenClaimAirdropTransactionBody tokenClaimAirdrop = 47;
      Specified by:
      getTokenClaimAirdrop in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenClaimAirdrop.
    • setTokenClaimAirdrop

       *
       Claim an "airdrop".
       This transaction "claims" one or more pending "airdrops".
       <p>
       The airdrop(s) to claim MUST be pending, and not
       already claimed.<br/>
       
      .proto.TokenClaimAirdropTransactionBody tokenClaimAirdrop = 47;
    • setTokenClaimAirdrop

       *
       Claim an "airdrop".
       This transaction "claims" one or more pending "airdrops".
       <p>
       The airdrop(s) to claim MUST be pending, and not
       already claimed.<br/>
       
      .proto.TokenClaimAirdropTransactionBody tokenClaimAirdrop = 47;
    • mergeTokenClaimAirdrop

       *
       Claim an "airdrop".
       This transaction "claims" one or more pending "airdrops".
       <p>
       The airdrop(s) to claim MUST be pending, and not
       already claimed.<br/>
       
      .proto.TokenClaimAirdropTransactionBody tokenClaimAirdrop = 47;
    • clearTokenClaimAirdrop

      public SchedulableTransactionBody.Builder clearTokenClaimAirdrop()
       *
       Claim an "airdrop".
       This transaction "claims" one or more pending "airdrops".
       <p>
       The airdrop(s) to claim MUST be pending, and not
       already claimed.<br/>
       
      .proto.TokenClaimAirdropTransactionBody tokenClaimAirdrop = 47;
    • hasTokenAirdrop

      public boolean hasTokenAirdrop()
       *
       Send an "airdrop" of tokens to one or more recipients.
       <p>
       This transaction unilaterally "gifts" tokens by transferring them
       from a "sender" account to the "recipient" account(s). If any
       recipient is not already associated to the token to airdrop, or
       has set a "reciever signature required" flag, then that recipient
       is recorded as a "pending" airdrop which must be "claimed".  All
       other recipients receive the "airdropped" tokens immediately.
       
      .proto.TokenAirdropTransactionBody tokenAirdrop = 48;
      Specified by:
      hasTokenAirdrop in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the tokenAirdrop field is set.
    • getTokenAirdrop

      public TokenAirdropTransactionBody getTokenAirdrop()
       *
       Send an "airdrop" of tokens to one or more recipients.
       <p>
       This transaction unilaterally "gifts" tokens by transferring them
       from a "sender" account to the "recipient" account(s). If any
       recipient is not already associated to the token to airdrop, or
       has set a "reciever signature required" flag, then that recipient
       is recorded as a "pending" airdrop which must be "claimed".  All
       other recipients receive the "airdropped" tokens immediately.
       
      .proto.TokenAirdropTransactionBody tokenAirdrop = 48;
      Specified by:
      getTokenAirdrop in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The tokenAirdrop.
    • setTokenAirdrop

       *
       Send an "airdrop" of tokens to one or more recipients.
       <p>
       This transaction unilaterally "gifts" tokens by transferring them
       from a "sender" account to the "recipient" account(s). If any
       recipient is not already associated to the token to airdrop, or
       has set a "reciever signature required" flag, then that recipient
       is recorded as a "pending" airdrop which must be "claimed".  All
       other recipients receive the "airdropped" tokens immediately.
       
      .proto.TokenAirdropTransactionBody tokenAirdrop = 48;
    • setTokenAirdrop

       *
       Send an "airdrop" of tokens to one or more recipients.
       <p>
       This transaction unilaterally "gifts" tokens by transferring them
       from a "sender" account to the "recipient" account(s). If any
       recipient is not already associated to the token to airdrop, or
       has set a "reciever signature required" flag, then that recipient
       is recorded as a "pending" airdrop which must be "claimed".  All
       other recipients receive the "airdropped" tokens immediately.
       
      .proto.TokenAirdropTransactionBody tokenAirdrop = 48;
    • mergeTokenAirdrop

       *
       Send an "airdrop" of tokens to one or more recipients.
       <p>
       This transaction unilaterally "gifts" tokens by transferring them
       from a "sender" account to the "recipient" account(s). If any
       recipient is not already associated to the token to airdrop, or
       has set a "reciever signature required" flag, then that recipient
       is recorded as a "pending" airdrop which must be "claimed".  All
       other recipients receive the "airdropped" tokens immediately.
       
      .proto.TokenAirdropTransactionBody tokenAirdrop = 48;
    • clearTokenAirdrop

      public SchedulableTransactionBody.Builder clearTokenAirdrop()
       *
       Send an "airdrop" of tokens to one or more recipients.
       <p>
       This transaction unilaterally "gifts" tokens by transferring them
       from a "sender" account to the "recipient" account(s). If any
       recipient is not already associated to the token to airdrop, or
       has set a "reciever signature required" flag, then that recipient
       is recorded as a "pending" airdrop which must be "claimed".  All
       other recipients receive the "airdropped" tokens immediately.
       
      .proto.TokenAirdropTransactionBody tokenAirdrop = 48;
    • hasRegisteredNodeCreate

      public boolean hasRegisteredNodeCreate()
       *
       Create a new registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeCreateTransactionBody registeredNodeCreate = 49;
      Specified by:
      hasRegisteredNodeCreate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the registeredNodeCreate field is set.
    • getRegisteredNodeCreate

      public RegisteredNodeCreateTransactionBody getRegisteredNodeCreate()
       *
       Create a new registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeCreateTransactionBody registeredNodeCreate = 49;
      Specified by:
      getRegisteredNodeCreate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The registeredNodeCreate.
    • setRegisteredNodeCreate

       *
       Create a new registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeCreateTransactionBody registeredNodeCreate = 49;
    • setRegisteredNodeCreate

      public SchedulableTransactionBody.Builder setRegisteredNodeCreate(RegisteredNodeCreateTransactionBody.Builder builderForValue)
       *
       Create a new registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeCreateTransactionBody registeredNodeCreate = 49;
    • mergeRegisteredNodeCreate

       *
       Create a new registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeCreateTransactionBody registeredNodeCreate = 49;
    • clearRegisteredNodeCreate

      public SchedulableTransactionBody.Builder clearRegisteredNodeCreate()
       *
       Create a new registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeCreateTransactionBody registeredNodeCreate = 49;
    • hasRegisteredNodeUpdate

      public boolean hasRegisteredNodeUpdate()
       *
       Update a registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeUpdateTransactionBody registeredNodeUpdate = 50;
      Specified by:
      hasRegisteredNodeUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the registeredNodeUpdate field is set.
    • getRegisteredNodeUpdate

      public RegisteredNodeUpdateTransactionBody getRegisteredNodeUpdate()
       *
       Update a registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeUpdateTransactionBody registeredNodeUpdate = 50;
      Specified by:
      getRegisteredNodeUpdate in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The registeredNodeUpdate.
    • setRegisteredNodeUpdate

       *
       Update a registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeUpdateTransactionBody registeredNodeUpdate = 50;
    • setRegisteredNodeUpdate

      public SchedulableTransactionBody.Builder setRegisteredNodeUpdate(RegisteredNodeUpdateTransactionBody.Builder builderForValue)
       *
       Update a registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeUpdateTransactionBody registeredNodeUpdate = 50;
    • mergeRegisteredNodeUpdate

       *
       Update a registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeUpdateTransactionBody registeredNodeUpdate = 50;
    • clearRegisteredNodeUpdate

      public SchedulableTransactionBody.Builder clearRegisteredNodeUpdate()
       *
       Update a registered node in the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeUpdateTransactionBody registeredNodeUpdate = 50;
    • hasRegisteredNodeDelete

      public boolean hasRegisteredNodeDelete()
       *
       Delete a registered node from the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeDeleteTransactionBody registeredNodeDelete = 51;
      Specified by:
      hasRegisteredNodeDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      Whether the registeredNodeDelete field is set.
    • getRegisteredNodeDelete

      public RegisteredNodeDeleteTransactionBody getRegisteredNodeDelete()
       *
       Delete a registered node from the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeDeleteTransactionBody registeredNodeDelete = 51;
      Specified by:
      getRegisteredNodeDelete in interface SchedulableTransactionBodyOrBuilder
      Returns:
      The registeredNodeDelete.
    • setRegisteredNodeDelete

       *
       Delete a registered node from the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeDeleteTransactionBody registeredNodeDelete = 51;
    • setRegisteredNodeDelete

      public SchedulableTransactionBody.Builder setRegisteredNodeDelete(RegisteredNodeDeleteTransactionBody.Builder builderForValue)
       *
       Delete a registered node from the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeDeleteTransactionBody registeredNodeDelete = 51;
    • mergeRegisteredNodeDelete

       *
       Delete a registered node from the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeDeleteTransactionBody registeredNodeDelete = 51;
    • clearRegisteredNodeDelete

      public SchedulableTransactionBody.Builder clearRegisteredNodeDelete()
       *
       Delete a registered node from the network address book.
       
      .com.hedera.hapi.node.addressbook.RegisteredNodeDeleteTransactionBody registeredNodeDelete = 51;
    • getMaxCustomFeesList

      public List<CustomFeeLimit> getMaxCustomFeesList()
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
      Specified by:
      getMaxCustomFeesList in interface SchedulableTransactionBodyOrBuilder
    • getMaxCustomFeesCount

      public int getMaxCustomFeesCount()
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
      Specified by:
      getMaxCustomFeesCount in interface SchedulableTransactionBodyOrBuilder
    • getMaxCustomFees

      public CustomFeeLimit getMaxCustomFees(int index)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
      Specified by:
      getMaxCustomFees in interface SchedulableTransactionBodyOrBuilder
    • setMaxCustomFees

      public SchedulableTransactionBody.Builder setMaxCustomFees(int index, CustomFeeLimit value)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • setMaxCustomFees

      public SchedulableTransactionBody.Builder setMaxCustomFees(int index, CustomFeeLimit.Builder builderForValue)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • addMaxCustomFees

      public SchedulableTransactionBody.Builder addMaxCustomFees(CustomFeeLimit value)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • addMaxCustomFees

      public SchedulableTransactionBody.Builder addMaxCustomFees(int index, CustomFeeLimit value)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • addMaxCustomFees

      public SchedulableTransactionBody.Builder addMaxCustomFees(CustomFeeLimit.Builder builderForValue)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • addMaxCustomFees

      public SchedulableTransactionBody.Builder addMaxCustomFees(int index, CustomFeeLimit.Builder builderForValue)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • addAllMaxCustomFees

      public SchedulableTransactionBody.Builder addAllMaxCustomFees(Iterable<? extends CustomFeeLimit> values)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • clearMaxCustomFees

      public SchedulableTransactionBody.Builder clearMaxCustomFees()
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;
    • removeMaxCustomFees

      public SchedulableTransactionBody.Builder removeMaxCustomFees(int index)
       *
       A list of maximum custom fees that the users are willing to pay.
       <p>
       This field is OPTIONAL.<br/>
       If left empty, the users are accepting to pay any custom fee.<br/>
       If used with a transaction type that does not support custom fee limits, the transaction will fail.
       
      repeated .proto.CustomFeeLimit max_custom_fees = 1001;