Package 

Interface UserDataResultCallback

    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.