-
public interface UserDataResultCallback
The public API interface to listen for user data updates.
-
-
Method Summary
Modifier and Type Method Description abstract void
onSuccess(@NonNull() UserDataResult userDataResult)
Called when the user data is successfully fetched. abstract void
onFailure(@NonNull() UserDataException exception)
Called when the user data request fails. -
-
Method Detail
-
onSuccess
abstract void onSuccess(@NonNull() UserDataResult userDataResult)
Called when the user data is successfully fetched.
- Parameters:
userDataResult
- The user data response.
-
onFailure
abstract void onFailure(@NonNull() UserDataException exception)
Called when the user data request fails.
- Parameters:
exception
- The exception representing the failure reason.
-
-
-
-