// This file is auto-generated. Do not edit. #pragma once #include #include #include #include #include #include #include #include namespace xrpl::transactions { class MPTokenIssuanceSetBuilder; /** * @brief Transaction: MPTokenIssuanceSet * * Type: ttMPTOKEN_ISSUANCE_SET (56) * Delegable: Delegation::delegable * Amendment: featureMPTokensV1 * Privileges: noPriv * * Immutable wrapper around STTx providing type-safe field access. * Use MPTokenIssuanceSetBuilder to construct new transactions. */ class MPTokenIssuanceSet : public TransactionBase { public: static constexpr xrpl::TxType txType = ttMPTOKEN_ISSUANCE_SET; /** * @brief Construct a MPTokenIssuanceSet transaction wrapper from an existing STTx object. * @throws std::runtime_error if the transaction type doesn't match. */ explicit MPTokenIssuanceSet(std::shared_ptr tx) : TransactionBase(std::move(tx)) { // Verify transaction type if (tx_->getTxnType() != txType) { throw std::runtime_error("Invalid transaction type for MPTokenIssuanceSet"); } } // Transaction-specific field getters /** * @brief Get sfMPTokenIssuanceID (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_UINT192::type::value_type getMPTokenIssuanceID() const { return this->tx_->at(sfMPTokenIssuanceID); } /** * @brief Get sfHolder (soeOPTIONAL) * @return The field value, or std::nullopt if not present. */ [[nodiscard]] protocol_autogen::Optional getHolder() const { if (hasHolder()) { return this->tx_->at(sfHolder); } return std::nullopt; } /** * @brief Check if sfHolder is present. * @return True if the field is present, false otherwise. */ [[nodiscard]] bool hasHolder() const { return this->tx_->isFieldPresent(sfHolder); } /** * @brief Get sfDomainID (soeOPTIONAL) * @return The field value, or std::nullopt if not present. */ [[nodiscard]] protocol_autogen::Optional getDomainID() const { if (hasDomainID()) { return this->tx_->at(sfDomainID); } return std::nullopt; } /** * @brief Check if sfDomainID is present. * @return True if the field is present, false otherwise. */ [[nodiscard]] bool hasDomainID() const { return this->tx_->isFieldPresent(sfDomainID); } /** * @brief Get sfMPTokenMetadata (soeOPTIONAL) * @return The field value, or std::nullopt if not present. */ [[nodiscard]] protocol_autogen::Optional getMPTokenMetadata() const { if (hasMPTokenMetadata()) { return this->tx_->at(sfMPTokenMetadata); } return std::nullopt; } /** * @brief Check if sfMPTokenMetadata is present. * @return True if the field is present, false otherwise. */ [[nodiscard]] bool hasMPTokenMetadata() const { return this->tx_->isFieldPresent(sfMPTokenMetadata); } /** * @brief Get sfTransferFee (soeOPTIONAL) * @return The field value, or std::nullopt if not present. */ [[nodiscard]] protocol_autogen::Optional getTransferFee() const { if (hasTransferFee()) { return this->tx_->at(sfTransferFee); } return std::nullopt; } /** * @brief Check if sfTransferFee is present. * @return True if the field is present, false otherwise. */ [[nodiscard]] bool hasTransferFee() const { return this->tx_->isFieldPresent(sfTransferFee); } /** * @brief Get sfMutableFlags (soeOPTIONAL) * @return The field value, or std::nullopt if not present. */ [[nodiscard]] protocol_autogen::Optional getMutableFlags() const { if (hasMutableFlags()) { return this->tx_->at(sfMutableFlags); } return std::nullopt; } /** * @brief Check if sfMutableFlags is present. * @return True if the field is present, false otherwise. */ [[nodiscard]] bool hasMutableFlags() const { return this->tx_->isFieldPresent(sfMutableFlags); } }; /** * @brief Builder for MPTokenIssuanceSet transactions. * * Provides a fluent interface for constructing transactions with method chaining. * Uses Json::Value internally for flexible transaction construction. * Inherits common field setters from TransactionBuilderBase. */ class MPTokenIssuanceSetBuilder : public TransactionBuilderBase { public: /** * @brief Construct a new MPTokenIssuanceSetBuilder with required fields. * @param account The account initiating the transaction. * @param mPTokenIssuanceID The sfMPTokenIssuanceID field value. * @param sequence Optional sequence number for the transaction. * @param fee Optional fee for the transaction. */ MPTokenIssuanceSetBuilder(SF_ACCOUNT::type::value_type account, std::decay_t const& mPTokenIssuanceID, std::optional sequence = std::nullopt, std::optional fee = std::nullopt ) : TransactionBuilderBase(ttMPTOKEN_ISSUANCE_SET, account, sequence, fee) { setMPTokenIssuanceID(mPTokenIssuanceID); } /** * @brief Construct a MPTokenIssuanceSetBuilder from an existing STTx object. * @param tx The existing transaction to copy from. * @throws std::runtime_error if the transaction type doesn't match. */ MPTokenIssuanceSetBuilder(std::shared_ptr tx) { if (tx->getTxnType() != ttMPTOKEN_ISSUANCE_SET) { throw std::runtime_error("Invalid transaction type for MPTokenIssuanceSetBuilder"); } object_ = *tx; } /** @brief Transaction-specific field setters */ /** * @brief Set sfMPTokenIssuanceID (soeREQUIRED) * @return Reference to this builder for method chaining. */ MPTokenIssuanceSetBuilder& setMPTokenIssuanceID(std::decay_t const& value) { object_[sfMPTokenIssuanceID] = value; return *this; } /** * @brief Set sfHolder (soeOPTIONAL) * @return Reference to this builder for method chaining. */ MPTokenIssuanceSetBuilder& setHolder(std::decay_t const& value) { object_[sfHolder] = value; return *this; } /** * @brief Set sfDomainID (soeOPTIONAL) * @return Reference to this builder for method chaining. */ MPTokenIssuanceSetBuilder& setDomainID(std::decay_t const& value) { object_[sfDomainID] = value; return *this; } /** * @brief Set sfMPTokenMetadata (soeOPTIONAL) * @return Reference to this builder for method chaining. */ MPTokenIssuanceSetBuilder& setMPTokenMetadata(std::decay_t const& value) { object_[sfMPTokenMetadata] = value; return *this; } /** * @brief Set sfTransferFee (soeOPTIONAL) * @return Reference to this builder for method chaining. */ MPTokenIssuanceSetBuilder& setTransferFee(std::decay_t const& value) { object_[sfTransferFee] = value; return *this; } /** * @brief Set sfMutableFlags (soeOPTIONAL) * @return Reference to this builder for method chaining. */ MPTokenIssuanceSetBuilder& setMutableFlags(std::decay_t const& value) { object_[sfMutableFlags] = value; return *this; } /** * @brief Build and return the MPTokenIssuanceSet wrapper. * @param publicKey The public key for signing. * @param secretKey The secret key for signing. * @return The constructed transaction wrapper. */ MPTokenIssuanceSet build(PublicKey const& publicKey, SecretKey const& secretKey) { sign(publicKey, secretKey); return MPTokenIssuanceSet{std::make_shared(std::move(object_))}; } }; } // namespace xrpl::transactions