From 5ebb3edeffaa49f5bdf05e6f810d171714211628 Mon Sep 17 00:00:00 2001 From: TJ Horner Date: Mon, 10 Aug 2020 17:17:07 -0400 Subject: [PATCH] feat: Add CustomTitle field to ChatMember --- types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types.go b/types.go index 44f1a58..0362c51 100644 --- a/types.go +++ b/types.go @@ -517,6 +517,7 @@ type ForceReply struct { type ChatMember struct { User *User `json:"user"` Status string `json:"status"` + CustomTitle string `json:"custom_title,omitempty"` // optional UntilDate int64 `json:"until_date,omitempty"` // optional CanBeEdited bool `json:"can_be_edited,omitempty"` // optional CanChangeInfo bool `json:"can_change_info,omitempty"` // optional