๐Ÿ“ฆ manideepk90 / react-native-hyperswitch-sdk

๐Ÿ“„ SDKInterface.kt ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14package io.hyperswitch.paymentsession

import io.hyperswitch.paymentsheet.PaymentSheet

interface SDKInterface {
    fun presentSheet(
        paymentIntentClientSecret: String,
        configuration: PaymentSheet.Configuration?
    ): Boolean

    fun presentSheet(configurationMap: Map<String, Any?>): Boolean
    fun initializeReactNativeInstance()
    fun recreateReactContext()
}