customer-android-kotlin

//core/com.kustomer.core.providers/KusChatProvider/logIn

logIn

[androidJvm]
abstract suspend fun logIn(jwtToken: String): KusResult<KusIdentifiedCustomer>

Returns KusIdentifiedCustomer as success response Generate a JWT Token on your backend server which should be passed in this function’s parameter For more information, Refer this link

Note: This is a suspend function and should be called from Kotlin Coroutines

Return

KusResult of type KusIdentifiedCustomer

Parameters

androidJvm

   
jwtToken This should be generated on your backend server for security reasons