-
public interface IUserGeneralBusinessUser general service
-
-
Method Summary
Modifier and Type Method Description abstract voidsendBindVerifyCode(String countryCode, String phoneNumber, IResultCallback callback)Send Verification code to bind mobile. abstract voidsendBindVerifyCodeByTicket(String countryCode, String phoneNumber, Map<String, String> ticket, IResultCallback callback)Send Verification code to bind mobile. abstract voidbindMobile(String countryCode, String phoneNumber, String code, IResultCallback callback)Bind mobile. -
-
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 sendBindVerifyCodecallback- Callback IResultCallback.
-
-
-
-