setForageConfig

open override fun setForageConfig(forageConfig: ForageConfig)

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

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

Parameters

forageConfig

A ForageConfig instance that specifies a merchantId and sessionToken.