/// /// FawryLaunchModel.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.fawrypay.rnfawrypaysdk import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.* /** * Represents the JavaScript object/struct "FawryLaunchModel". */ @DoNotStrip @Keep data class FawryLaunchModel @DoNotStrip @Keep constructor( val baseUrl: String, val lang: FawryLanguages, val merchantInfo: MerchantInfo, val customerInfo: CustomerInfo, val items: Array, val allow3DPayment: Boolean, val skipReceipt: Boolean, val skipLogin: Boolean, val skipCustomerInput: Boolean?, val payWithCardToken: Boolean, val authCaptureMode: Boolean, val allowVoucher: Boolean, val paymentSignature: String?, val tokenizationSignature: String?, val paymentMethod: String?, val launchApplePayModel: LaunchApplePayModel?, val launchCheckoutModel: LaunchCheckoutModel? ) { /* main constructor */ }