summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go
blob: b02a988d5e99cebe0024ea15d6f7eeee90264a41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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"`
}