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"` }