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

#pragma once

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

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

#include <NitroModules/Promise.hpp>
#include "AdServicesAttributionDataResponse.hpp"

namespace margelo::nitro::nitroappleadattribution {

  using namespace margelo::nitro;

  /**
   * An abstract base class for `NitroAppleAdAttribution`
   * Inherit this class to create instances of `HybridNitroAppleAdAttributionSpec` in C++.
   * You must explicitly call `HybridObject`'s constructor yourself, because it is virtual.
   * @example
   * ```cpp
   * class HybridNitroAppleAdAttribution: public HybridNitroAppleAdAttributionSpec {
   * public:
   *   HybridNitroAppleAdAttribution(...): HybridObject(TAG) { ... }
   *   // ...
   * };
   * ```
   */
  class HybridNitroAppleAdAttributionSpec: public virtual HybridObject {
    public:
      // Constructor
      explicit HybridNitroAppleAdAttributionSpec(): HybridObject(TAG) { }

      // Destructor
      ~HybridNitroAppleAdAttributionSpec() override = default;

    public:
      // Properties
      

    public:
      // Methods
      virtual std::shared_ptr<Promise<AdServicesAttributionDataResponse>> getAdServicesAttributionData() = 0;

    protected:
      // Hybrid Setup
      void loadHybridMethods() override;

    protected:
      // Tag for logging
      static constexpr auto TAG = "NitroAppleAdAttribution";
  };

} // namespace margelo::nitro::nitroappleadattribution
