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

import NitroModules

/**
 * Represents an instance of `NitroVerifyPurchaseWithIapkitGoogleProps`, backed by a C++ struct.
 */
public typealias NitroVerifyPurchaseWithIapkitGoogleProps = margelo.nitro.iap.NitroVerifyPurchaseWithIapkitGoogleProps

public extension NitroVerifyPurchaseWithIapkitGoogleProps {
  private typealias bridge = margelo.nitro.iap.bridge.swift

  /**
   * Create a new instance of `NitroVerifyPurchaseWithIapkitGoogleProps`.
   */
  init(purchaseToken: String) {
    self.init(std.string(purchaseToken))
  }

  var purchaseToken: String {
    @inline(__always)
    get {
      return String(self.__purchaseToken)
    }
    @inline(__always)
    set {
      self.__purchaseToken = std.string(newValue)
    }
  }
}
