UserInfo
用户的信息。
Java
public class UserInfo {
public int uid;
public String userAccount;
@CalledByNative
public UserInfo(int uid, String userAccount) {
this.uid = uid;
this.userAccount = userAccount;
}
}
uid
用户 ID。
userAccount
用户 Account。