diff --git a/src/structures/ClientUser.js b/src/structures/ClientUser.js
index 22140bee8..5ff0057df 100644
--- a/src/structures/ClientUser.js
+++ b/src/structures/ClientUser.js
@@ -50,6 +50,27 @@ class ClientUser extends User {
* @type {Object}
*/
this.settings = {};
+
+ /**
+ * If the user has discord premium (nitro)
+ * This is only filled when using a user account.
+ * @type {?boolean}
+ */
+ this.premium = typeof data.premium === 'boolean' ? data.premium : null;
+
+ /**
+ * If the user has MFA enabled on their account
+ * This is only filled when using a user account.
+ * @type {?boolean}
+ */
+ this.mfaEnabled = typeof data.mfa_enabled === 'boolean' ? data.mfa_enabled : null;
+
+ /**
+ * If the user has ever used a mobile device on discord
+ * This is only filled when using a user account.
+ * @type {?boolean}
+ */
+ this.mobile = typeof data.mobile === 'boolean' ? data.mobile : null;
}
edit(data) {