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

๐Ÿ“„ GooglePayEnvironment.kt ยท 10 lines
1
2
3
4
5
6
7
8
9
10package io.hyperswitch.payments

import com.google.android.gms.wallet.WalletConstants

enum class GooglePayEnvironment(
    internal val value: Int
) {
    Production(WalletConstants.ENVIRONMENT_PRODUCTION),
    Test(WalletConstants.ENVIRONMENT_TEST)
}