mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
34 lines
1.4 KiB
Go
34 lines
1.4 KiB
Go
|
// 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"`
|
||
|
}
|