///
/// PromotionalOfferJwsInputIOS.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 `PromotionalOfferJwsInputIOS`, backed by a C++ struct.
 */
public typealias PromotionalOfferJwsInputIOS = margelo.nitro.iap.PromotionalOfferJwsInputIOS

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

  /**
   * Create a new instance of `PromotionalOfferJwsInputIOS`.
   */
  init(jws: String, offerId: String) {
    self.init(std.string(jws), std.string(offerId))
  }

  @inline(__always)
  var jws: String {
    return String(self.__jws)
  }
  
  @inline(__always)
  var offerId: String {
    return String(self.__offerId)
  }
}
