From 4987c0f49225982b948228352b1f2bd18c14ff9f Mon Sep 17 00:00:00 2001 From: Ankur P <98815360+ankurp-bst@users.noreply.github.com> Date: Wed, 6 Apr 2022 19:59:19 +0530 Subject: [PATCH] Add Pending in Member struct --- structs.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/structs.go b/structs.go index 6c4ddbc05..86a2c24b3 100644 --- a/structs.go +++ b/structs.go @@ -760,6 +760,9 @@ type Member struct { // A list of IDs of the roles which are possessed by the member. Roles IDSlice `json:"roles,string"` + + // Whether the user has not yet passed the guild's Membership Screening requirements + Pending bool `json:"pending"` } func (m *Member) GetGuildID() int64 {