blob: ac42c59affc6db147f9225f7bbda9d76dffdffef (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AccessReviewSettings undocumented
type AccessReviewSettings struct {
// Object is the base model of AccessReviewSettings
Object
// MailNotificationsEnabled undocumented
MailNotificationsEnabled *bool `json:"mailNotificationsEnabled,omitempty"`
// RemindersEnabled undocumented
RemindersEnabled *bool `json:"remindersEnabled,omitempty"`
// JustificationRequiredOnApproval undocumented
JustificationRequiredOnApproval *bool `json:"justificationRequiredOnApproval,omitempty"`
// RecurrenceSettings undocumented
RecurrenceSettings *AccessReviewRecurrenceSettings `json:"recurrenceSettings,omitempty"`
// AutoReviewEnabled undocumented
AutoReviewEnabled *bool `json:"autoReviewEnabled,omitempty"`
// ActivityDurationInDays undocumented
ActivityDurationInDays *int `json:"activityDurationInDays,omitempty"`
// AutoReviewSettings undocumented
AutoReviewSettings *AutoReviewSettings `json:"autoReviewSettings,omitempty"`
// AutoApplyReviewResultsEnabled undocumented
AutoApplyReviewResultsEnabled *bool `json:"autoApplyReviewResultsEnabled,omitempty"`
// AccessRecommendationsEnabled undocumented
AccessRecommendationsEnabled *bool `json:"accessRecommendationsEnabled,omitempty"`
}
|