// This file is auto-generated. Do not edit. #pragma once #include #include #include #include #include #include #include #include namespace xrpl::ledger_entries { class XChainOwnedCreateAccountClaimIDBuilder; /** * @brief Ledger Entry: XChainOwnedCreateAccountClaimID * * Type: ltXCHAIN_OWNED_CREATE_ACCOUNT_CLAIM_ID (0x0074) * RPC Name: xchain_owned_create_account_claim_id * * Immutable wrapper around SLE providing type-safe field access. * Use XChainOwnedCreateAccountClaimIDBuilder to construct new ledger entries. */ class XChainOwnedCreateAccountClaimID : public LedgerEntryBase { public: static constexpr LedgerEntryType entryType = ltXCHAIN_OWNED_CREATE_ACCOUNT_CLAIM_ID; /** * @brief Construct a XChainOwnedCreateAccountClaimID ledger entry wrapper from an existing SLE object. * @throws std::runtime_error if the ledger entry type doesn't match. */ explicit XChainOwnedCreateAccountClaimID(std::shared_ptr sle) : LedgerEntryBase(std::move(sle)) { // Verify ledger entry type if (sle_->getType() != entryType) { throw std::runtime_error("Invalid ledger entry type for XChainOwnedCreateAccountClaimID"); } } // Ledger entry-specific field getters /** * @brief Get sfAccount (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_ACCOUNT::type::value_type getAccount() const { return this->sle_->at(sfAccount); } /** * @brief Get sfXChainBridge (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_XCHAIN_BRIDGE::type::value_type getXChainBridge() const { return this->sle_->at(sfXChainBridge); } /** * @brief Get sfXChainAccountCreateCount (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_UINT64::type::value_type getXChainAccountCreateCount() const { return this->sle_->at(sfXChainAccountCreateCount); } /** * @brief Get sfXChainCreateAccountAttestations (soeREQUIRED) * @note This is an untyped field (unknown). * @return The field value. */ [[nodiscard]] STArray const& getXChainCreateAccountAttestations() const { return this->sle_->getFieldArray(sfXChainCreateAccountAttestations); } /** * @brief Get sfOwnerNode (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_UINT64::type::value_type getOwnerNode() const { return this->sle_->at(sfOwnerNode); } /** * @brief Get sfPreviousTxnID (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_UINT256::type::value_type getPreviousTxnID() const { return this->sle_->at(sfPreviousTxnID); } /** * @brief Get sfPreviousTxnLgrSeq (soeREQUIRED) * @return The field value. */ [[nodiscard]] SF_UINT32::type::value_type getPreviousTxnLgrSeq() const { return this->sle_->at(sfPreviousTxnLgrSeq); } }; /** * @brief Builder for XChainOwnedCreateAccountClaimID ledger entries. * * Provides a fluent interface for constructing ledger entries with method chaining. * Uses Json::Value internally for flexible ledger entry construction. * Inherits common field setters from LedgerEntryBuilderBase. */ class XChainOwnedCreateAccountClaimIDBuilder : public LedgerEntryBuilderBase { public: /** * @brief Construct a new XChainOwnedCreateAccountClaimIDBuilder with required fields. * @param account The sfAccount field value. * @param xChainBridge The sfXChainBridge field value. * @param xChainAccountCreateCount The sfXChainAccountCreateCount field value. * @param xChainCreateAccountAttestations The sfXChainCreateAccountAttestations field value. * @param ownerNode The sfOwnerNode field value. * @param previousTxnID The sfPreviousTxnID field value. * @param previousTxnLgrSeq The sfPreviousTxnLgrSeq field value. */ XChainOwnedCreateAccountClaimIDBuilder(std::decay_t const& account,std::decay_t const& xChainBridge,std::decay_t const& xChainAccountCreateCount,STArray const& xChainCreateAccountAttestations,std::decay_t const& ownerNode,std::decay_t const& previousTxnID,std::decay_t const& previousTxnLgrSeq) : LedgerEntryBuilderBase(ltXCHAIN_OWNED_CREATE_ACCOUNT_CLAIM_ID) { setAccount(account); setXChainBridge(xChainBridge); setXChainAccountCreateCount(xChainAccountCreateCount); setXChainCreateAccountAttestations(xChainCreateAccountAttestations); setOwnerNode(ownerNode); setPreviousTxnID(previousTxnID); setPreviousTxnLgrSeq(previousTxnLgrSeq); } /** * @brief Construct a XChainOwnedCreateAccountClaimIDBuilder from an existing SLE object. * @param sle The existing ledger entry to copy from. * @throws std::runtime_error if the ledger entry type doesn't match. */ XChainOwnedCreateAccountClaimIDBuilder(std::shared_ptr sle) { if (sle->at(sfLedgerEntryType) != ltXCHAIN_OWNED_CREATE_ACCOUNT_CLAIM_ID) { throw std::runtime_error("Invalid ledger entry type for XChainOwnedCreateAccountClaimID"); } object_ = *sle; } /** @brief Ledger entry-specific field setters */ /** * @brief Set sfAccount (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setAccount(std::decay_t const& value) { object_[sfAccount] = value; return *this; } /** * @brief Set sfXChainBridge (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setXChainBridge(std::decay_t const& value) { object_[sfXChainBridge] = value; return *this; } /** * @brief Set sfXChainAccountCreateCount (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setXChainAccountCreateCount(std::decay_t const& value) { object_[sfXChainAccountCreateCount] = value; return *this; } /** * @brief Set sfXChainCreateAccountAttestations (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setXChainCreateAccountAttestations(STArray const& value) { object_.setFieldArray(sfXChainCreateAccountAttestations, value); return *this; } /** * @brief Set sfOwnerNode (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setOwnerNode(std::decay_t const& value) { object_[sfOwnerNode] = value; return *this; } /** * @brief Set sfPreviousTxnID (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setPreviousTxnID(std::decay_t const& value) { object_[sfPreviousTxnID] = value; return *this; } /** * @brief Set sfPreviousTxnLgrSeq (soeREQUIRED) * @return Reference to this builder for method chaining. */ XChainOwnedCreateAccountClaimIDBuilder& setPreviousTxnLgrSeq(std::decay_t const& value) { object_[sfPreviousTxnLgrSeq] = value; return *this; } /** * @brief Build and return the completed XChainOwnedCreateAccountClaimID wrapper. * @param index The ledger entry index. * @return The constructed ledger entry wrapper. */ XChainOwnedCreateAccountClaimID build(uint256 const& index) { return XChainOwnedCreateAccountClaimID{std::make_shared(std::move(object_), index)}; } }; } // namespace xrpl::ledger_entries