From eeb2d4f62d1d70fe684792bb2420fb68ccee38f7 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Fri, 24 Jun 2016 11:55:52 -0500 Subject: [PATCH] Add mfa_enabled to User struct --- structs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/structs.go b/structs.go index 1b923cb..9bab58f 100644 --- a/structs.go +++ b/structs.go @@ -281,6 +281,7 @@ type User struct { Discriminator string `json:"discriminator"` Token string `json:"token"` Verified bool `json:"verified"` + MFAEnabled bool `json:"mfa_enabled"` Bot bool `json:"bot"` }