blob: 0d5518fb741b989056b62cd53731dc0dddd9f4c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MailSearchFolder undocumented
type MailSearchFolder struct {
// MailFolder is the base model of MailSearchFolder
MailFolder
// IsSupported undocumented
IsSupported *bool `json:"isSupported,omitempty"`
// IncludeNestedFolders undocumented
IncludeNestedFolders *bool `json:"includeNestedFolders,omitempty"`
// SourceFolderIDs undocumented
SourceFolderIDs []string `json:"sourceFolderIds,omitempty"`
// FilterQuery undocumented
FilterQuery *string `json:"filterQuery,omitempty"`
}
|