blob: 1f974da68743de4cedc13255797b4d999a6ec6e9 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MetadataAction undocumented
type MetadataAction struct {
// InformationProtectionAction is the base model of MetadataAction
InformationProtectionAction
// MetadataToRemove undocumented
MetadataToRemove []string `json:"metadataToRemove,omitempty"`
// MetadataToAdd undocumented
MetadataToAdd []KeyValuePair `json:"metadataToAdd,omitempty"`
}
// MetadataEntry undocumented
type MetadataEntry struct {
// Object is the base model of MetadataEntry
Object
// Key undocumented
Key *string `json:"key,omitempty"`
// Value undocumented
Value *string `json:"value,omitempty"`
}
|