From 795a8705c3fdc5bf55e83d382e7d3ff233896a0b Mon Sep 17 00:00:00 2001 From: Wim Date: Thu, 26 Dec 2019 23:12:28 +0100 Subject: Add initial Microsoft Teams support Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup --- .../yaegashi/msgraph.go/beta/MailFolderModel.go | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go') diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go new file mode 100644 index 00000000..b02a988d --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go @@ -0,0 +1,33 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// MailFolder undocumented +type MailFolder struct { + // Entity is the base model of MailFolder + Entity + // DisplayName undocumented + DisplayName *string `json:"displayName,omitempty"` + // ParentFolderID undocumented + ParentFolderID *string `json:"parentFolderId,omitempty"` + // ChildFolderCount undocumented + ChildFolderCount *int `json:"childFolderCount,omitempty"` + // UnreadItemCount undocumented + UnreadItemCount *int `json:"unreadItemCount,omitempty"` + // TotalItemCount undocumented + TotalItemCount *int `json:"totalItemCount,omitempty"` + // WellKnownName undocumented + WellKnownName *string `json:"wellKnownName,omitempty"` + // SingleValueExtendedProperties undocumented + SingleValueExtendedProperties []SingleValueLegacyExtendedProperty `json:"singleValueExtendedProperties,omitempty"` + // MultiValueExtendedProperties undocumented + MultiValueExtendedProperties []MultiValueLegacyExtendedProperty `json:"multiValueExtendedProperties,omitempty"` + // Messages undocumented + Messages []Message `json:"messages,omitempty"` + // MessageRules undocumented + MessageRules []MessageRule `json:"messageRules,omitempty"` + // ChildFolders undocumented + ChildFolders []MailFolder `json:"childFolders,omitempty"` + // UserConfigurations undocumented + UserConfigurations []UserConfiguration `json:"userConfigurations,omitempty"` +} -- cgit v1.2.3