diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go new file mode 100644 index 00000000..1f974da6 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go @@ -0,0 +1,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"` +} |