Package 

Interface IUserGeneralBusiness

    • Method Summary

      Modifier and Type Method Description
      abstract void sendBindVerifyCode(String countryCode, String phoneNumber, IResultCallback callback) Send Verification code to bind mobile.
      abstract void sendBindVerifyCodeByTicket(String countryCode, String phoneNumber, Map<String, String> ticket, IResultCallback callback) Send Verification code to bind mobile.
      abstract void bindMobile(String countryCode, String phoneNumber, String code, IResultCallback callback) Bind mobile.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • sendBindVerifyCode

         abstract void sendBindVerifyCode(String countryCode, String phoneNumber, IResultCallback callback)

        Send Verification code to bind mobile.

        Parameters:
        countryCode - Country code, for example: 86.
        phoneNumber - Mobile number.
        callback - Callback IResultCallback.
      • sendBindVerifyCodeByTicket

         abstract void sendBindVerifyCodeByTicket(String countryCode, String phoneNumber, Map<String, String> ticket, IResultCallback callback)

        Send Verification code to bind mobile.

        Parameters:
        countryCode - Country code, for example: 86.
        phoneNumber - Mobile number.
        callback - Callback IResultCallback.
      • bindMobile

         abstract void bindMobile(String countryCode, String phoneNumber, String code, IResultCallback callback)

        Bind mobile.

        Parameters:
        countryCode - Country code, for example: 86.
        phoneNumber - Mobile number.
        code - Verification code, from sendBindVerifyCode
        callback - Callback IResultCallback.