AuthStatus

data class AuthStatus(val currentAuthStatus: Boolean, val bankTerminalID: String? = null, val merchantID: String? = null, val bankAndMerchantName: String? = null) : SdkSuccessAnswer

Represents the current authentication status with bank session details.

Constructors

Link copied to clipboard
constructor(currentAuthStatus: Boolean, bankTerminalID: String? = null, merchantID: String? = null, bankAndMerchantName: String? = null)

Properties

Link copied to clipboard
val bankAndMerchantName: String?

The bank and merchant name of the current session. null before login() / after logout().

Link copied to clipboard
val bankTerminalID: String?

The bank terminal ID of the current session. null before login() / after logout().

Link copied to clipboard
val currentAuthStatus: Boolean

The current authentication status.

Link copied to clipboard
val merchantID: String?

The merchant ID of the current session. null before login() / after logout().