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

import NitroModules

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

public extension LaunchApplePayModel {
  private typealias bridge = margelo.nitro.fawrypay_rnfawrypaysdk.bridge.swift

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

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