From 8713b45ae71f9ab061385c60e7ffae8f9e65a85c Mon Sep 17 00:00:00 2001 From: Julian Y Date: Sat, 3 Aug 2019 23:48:24 -0700 Subject: [PATCH] Create new VerificationLevel VerificationLevelVeryHigh Closes #677 --- structs.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/structs.go b/structs.go index 4465ec5..9db3a96 100644 --- a/structs.go +++ b/structs.go @@ -312,12 +312,13 @@ func (e *Emoji) APIName() string { // VerificationLevel type definition type VerificationLevel int -// Constants for VerificationLevel levels from 0 to 3 inclusive +// Constants for VerificationLevel levels from 0 to 4 inclusive const ( VerificationLevelNone VerificationLevel = iota VerificationLevelLow VerificationLevelMedium VerificationLevelHigh + VerificationLevelVeryHigh ) // ExplicitContentFilterLevel type definition