// // Created by Marc Rousavy on 29.12.23. // #pragma once #include #include namespace vision { using namespace facebook; using namespace jni; struct JJSUnionValue : public JavaClass { static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/types/JSUnionValue;"; local_ref getUnionValue() { const auto getUnionValueMethod = getClass()->getMethod("getUnionValue"); return getUnionValueMethod(self()); } }; } // namespace vision