interface IWepinUser {
    status: "success" | "fail";
    token?: UserToken;
    userInfo?: UserInfo;
    userStatus?: UserStatus;
    walletId?: string;
}

Properties

status: "success" | "fail"
token?: UserToken
userInfo?: UserInfo
userStatus?: UserStatus
walletId?: string