Update auto generated files

This commit is contained in:
JCW
2026-07-14 12:03:25 +01:00
parent 07c2be89ef
commit 2ed465996e
2 changed files with 58 additions and 0 deletions

View File

@@ -482,6 +482,32 @@ public:
{
return this->tx_->isFieldPresent(sfGracePeriod);
}
/**
* @brief Get sfStartDate (SoeOptional)
* @return The field value, or std::nullopt if not present.
*/
[[nodiscard]]
protocol_autogen::Optional<SF_UINT32::type::value_type>
getStartDate() const
{
if (hasStartDate())
{
return this->tx_->at(sfStartDate);
}
return std::nullopt;
}
/**
* @brief Check if sfStartDate is present.
* @return True if the field is present, false otherwise.
*/
[[nodiscard]]
bool
hasStartDate() const
{
return this->tx_->isFieldPresent(sfStartDate);
}
};
/**
@@ -726,6 +752,17 @@ public:
return *this;
}
/**
* @brief Set sfStartDate (SoeOptional)
* @return Reference to this builder for method chaining.
*/
LoanSetBuilder&
setStartDate(std::decay_t<typename SF_UINT32::type::value_type> const& value)
{
object_[sfStartDate] = value;
return *this;
}
/**
* @brief Build and return the LoanSet wrapper.
* @param publicKey The public key for signing.