///
/// NitroVerifyPurchaseWithIapkitGoogleProps.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © 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))
  }

  @inline(__always)
  var purchaseToken: String {
    return String(self.__purchaseToken)
  }
}
