///
/// NitroSubscriptionStatus.hpp
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

#pragma once

#if __has_include(<NitroModules/JSIConverter.hpp>)
#include <NitroModules/JSIConverter.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif
#if __has_include(<NitroModules/NitroDefines.hpp>)
#include <NitroModules/NitroDefines.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif
#if __has_include(<NitroModules/JSIHelpers.hpp>)
#include <NitroModules/JSIHelpers.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif
#if __has_include(<NitroModules/PropNameIDCache.hpp>)
#include <NitroModules/PropNameIDCache.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif

// Forward declaration of `NitroSubscriptionRenewalInfo` to properly resolve imports.
namespace margelo::nitro::iap { struct NitroSubscriptionRenewalInfo; }

#include <string>
#include <NitroModules/Null.hpp>
#include "NitroSubscriptionRenewalInfo.hpp"
#include <variant>
#include <optional>

namespace margelo::nitro::iap {

  /**
   * A struct which can be represented as a JavaScript object (NitroSubscriptionStatus).
   */
  struct NitroSubscriptionStatus final {
  public:
    double state     SWIFT_PRIVATE;
    std::string platform     SWIFT_PRIVATE;
    std::optional<std::variant<nitro::NullType, NitroSubscriptionRenewalInfo>> renewalInfo     SWIFT_PRIVATE;

  public:
    NitroSubscriptionStatus() = default;
    explicit NitroSubscriptionStatus(double state, std::string platform, std::optional<std::variant<nitro::NullType, NitroSubscriptionRenewalInfo>> renewalInfo): state(state), platform(platform), renewalInfo(renewalInfo) {}

  public:
    friend bool operator==(const NitroSubscriptionStatus& lhs, const NitroSubscriptionStatus& rhs) = default;
  };

} // namespace margelo::nitro::iap

namespace margelo::nitro {

  // C++ NitroSubscriptionStatus <> JS NitroSubscriptionStatus (object)
  template <>
  struct JSIConverter<margelo::nitro::iap::NitroSubscriptionStatus> final {
    static inline margelo::nitro::iap::NitroSubscriptionStatus fromJSI(jsi::Runtime& runtime, const jsi::Value& arg) {
      jsi::Object obj = arg.asObject(runtime);
      return margelo::nitro::iap::NitroSubscriptionStatus(
        JSIConverter<double>::fromJSI(runtime, obj.getProperty(runtime, PropNameIDCache::get(runtime, "state"))),
        JSIConverter<std::string>::fromJSI(runtime, obj.getProperty(runtime, PropNameIDCache::get(runtime, "platform"))),
        JSIConverter<std::optional<std::variant<nitro::NullType, margelo::nitro::iap::NitroSubscriptionRenewalInfo>>>::fromJSI(runtime, obj.getProperty(runtime, PropNameIDCache::get(runtime, "renewalInfo")))
      );
    }
    static inline jsi::Value toJSI(jsi::Runtime& runtime, const margelo::nitro::iap::NitroSubscriptionStatus& arg) {
      jsi::Object obj(runtime);
      obj.setProperty(runtime, PropNameIDCache::get(runtime, "state"), JSIConverter<double>::toJSI(runtime, arg.state));
      obj.setProperty(runtime, PropNameIDCache::get(runtime, "platform"), JSIConverter<std::string>::toJSI(runtime, arg.platform));
      obj.setProperty(runtime, PropNameIDCache::get(runtime, "renewalInfo"), JSIConverter<std::optional<std::variant<nitro::NullType, margelo::nitro::iap::NitroSubscriptionRenewalInfo>>>::toJSI(runtime, arg.renewalInfo));
      return obj;
    }
    static inline bool canConvert(jsi::Runtime& runtime, const jsi::Value& value) {
      if (!value.isObject()) {
        return false;
      }
      jsi::Object obj = value.getObject(runtime);
      if (!nitro::isPlainObject(runtime, obj)) {
        return false;
      }
      if (!JSIConverter<double>::canConvert(runtime, obj.getProperty(runtime, PropNameIDCache::get(runtime, "state")))) return false;
      if (!JSIConverter<std::string>::canConvert(runtime, obj.getProperty(runtime, PropNameIDCache::get(runtime, "platform")))) return false;
      if (!JSIConverter<std::optional<std::variant<nitro::NullType, margelo::nitro::iap::NitroSubscriptionRenewalInfo>>>::canConvert(runtime, obj.getProperty(runtime, PropNameIDCache::get(runtime, "renewalInfo")))) return false;
      return true;
    }
  };

} // namespace margelo::nitro
