Resend Verification Email
Request a Versus Account verification email be resent.
Android
/**
* @return Boolean - with few exceptions this method should always succeed and will simply return
* this bool which determines whether or not there were minor problems encountered along the way.
*/
fun resendVerification(email: String): VsLiveData<Boolean>
val email: String = "[email protected]"
SDK.Account.resendVerification(email)
.observe(object : VsObserver<Boolean>() {
override fun onError(error: Throwable) {
}
override fun onChanged(t: Boolean) {
}
})
iOS
/// - email: The player's account email.
/// - completionHandler: This closure will return a Bool value indicating the success or failure of the call
resendAccountVerification(email: String, completionHandler: @escaping VersusApiResponse<VersusStatus>)
Updated over 2 years ago