UserInfo
The information of the user.
public class UserInfo {
public int uid;
public String userAccount;
@CalledByNative
public UserInfo(int uid, String userAccount) {
this.uid = uid;
this.userAccount = userAccount;
}
}
Attributes
- uid
- The user ID.
- userAccount
- User account.