blob: 618d469261c95828606a4bdd4dae66d2a8709f16 (
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
34
35
36
37
38
39
40
41
42
43
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// BusinessFlow undocumented
type BusinessFlow struct {
// Entity is the base model of BusinessFlow
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// DeDuplicationID undocumented
DeDuplicationID *string `json:"deDuplicationId,omitempty"`
// SchemaID undocumented
SchemaID *string `json:"schemaId,omitempty"`
// CustomData undocumented
CustomData *string `json:"customData,omitempty"`
// RecordVersion undocumented
RecordVersion *string `json:"recordVersion,omitempty"`
// Policy undocumented
Policy *GovernancePolicy `json:"policy,omitempty"`
// PolicyTemplateID undocumented
PolicyTemplateID *string `json:"policyTemplateId,omitempty"`
// Settings undocumented
Settings *BusinessFlowSettings `json:"settings,omitempty"`
}
// BusinessFlowSettings undocumented
type BusinessFlowSettings struct {
// AccessReviewSettings is the base model of BusinessFlowSettings
AccessReviewSettings
// DurationInDays undocumented
DurationInDays *int `json:"durationInDays,omitempty"`
}
// BusinessFlowTemplate undocumented
type BusinessFlowTemplate struct {
// Entity is the base model of BusinessFlowTemplate
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
}
|