/// /// JCastOptions.hpp /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// #pragma once #include #include "CastOptions.hpp" #include #include namespace margelo::nitro::omni { using namespace facebook; /** * The C++ JNI bridge between the C++ struct "CastOptions" and the Kotlin data class "CastOptions". */ struct JCastOptions final: public jni::JavaClass { public: static constexpr auto kJavaDescriptor = "Lcom/margelo/nitro/omni/CastOptions;"; public: /** * Convert this Java/Kotlin-based struct to the C++ struct CastOptions by copying all values to C++. */ [[maybe_unused]] [[nodiscard]] CastOptions toCpp() const { static const auto clazz = javaClassStatic(); static const auto fieldReceiverApplicationId = clazz->getField("receiverApplicationId"); jni::local_ref receiverApplicationId = this->getFieldValue(fieldReceiverApplicationId); return CastOptions( receiverApplicationId != nullptr ? std::make_optional(receiverApplicationId->toStdString()) : std::nullopt ); } public: /** * Create a Java/Kotlin-based struct by copying all values from the given C++ struct to Java. */ [[maybe_unused]] static jni::local_ref fromCpp(const CastOptions& value) { using JSignature = JCastOptions(jni::alias_ref); static const auto clazz = javaClassStatic(); static const auto create = clazz->getStaticMethod("fromCpp"); return create( clazz, value.receiverApplicationId.has_value() ? jni::make_jstring(value.receiverApplicationId.value()) : nullptr ); } }; } // namespace margelo::nitro::omni