From 394f1b4aa5fed7ffc6db2629723343d054f23202 Mon Sep 17 00:00:00 2001 From: elena sokolova Date: Tue, 12 Jul 2022 12:56:26 +0300 Subject: [PATCH] add meeting short view in contact struct --- contact.go | 6 ++++++ tdapi/contact.go | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/contact.go b/contact.go index 7a55bad..5e59afc 100644 --- a/contact.go +++ b/contact.go @@ -128,6 +128,9 @@ type Contact struct { // Short view in task list TaskShortView *bool `json:"task_short_view,omitempty"` + // Short view in meeting list + MeetingShortView *bool `json:"meeting_short_view,omitempty"` + // Short view in contact list in mobile app ContactMshortView *bool `json:"contact_mshort_view,omitempty"` @@ -143,6 +146,9 @@ type Contact struct { // Short view in task list in mobile app TaskMshortView *bool `json:"task_mshort_view,omitempty"` + // Short view in meeting list in mobile app + MeetingMshortView *bool `json:"meeting_mshort_view,omitempty"` + // Show archived contacts in contact list ContactShowArchived *bool `json:"contact_show_archived,omitempty"` diff --git a/tdapi/contact.go b/tdapi/contact.go index b5fdf3d..01bd98b 100644 --- a/tdapi/contact.go +++ b/tdapi/contact.go @@ -101,6 +101,9 @@ type Contact struct { // Short view in task list TaskShortView bool `json:"task_short_view"` + // Short view in meeting list + MeetingShortView bool `json:"meeting_short_view"` + // Short view in contact list in mobile app ContactMshortView bool `json:"contact_mshort_view"` @@ -112,4 +115,7 @@ type Contact struct { // Short view in task list in mobile app TaskMshortView bool `json:"task_mshort_view"` + + // Short view in meeting list in mobile app + MeetingMshortView bool `json:"meeting_mshort_view"` }