setForageConfig

open override fun setForageConfig(forageConfig: ForageConfig)

Sets the necessary ForageConfig configuration properties for a ForageElement. setForageConfig must be called before any other methods can be executed on the Element.

// Example: Call setForageConfig on a ForagePANEditText Element
val foragePanEditText = root?.findViewById<ForagePANEditText>(
R.id.tokenizeForagePanEditText
)
foragePanEditText.setForageConfig(
ForageConfig(
merchantId = "<merchant_id>",
sessionToken = "<session_token>"
)
)

Parameters

forageConfig

A ForageConfig instance that specifies a merchantId and sessionToken.