github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelMetadata.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // MetadataAction undocumented
     6  type MetadataAction struct {
     7  	// InformationProtectionAction is the base model of MetadataAction
     8  	InformationProtectionAction
     9  	// MetadataToRemove undocumented
    10  	MetadataToRemove []string `json:"metadataToRemove,omitempty"`
    11  	// MetadataToAdd undocumented
    12  	MetadataToAdd []KeyValuePair `json:"metadataToAdd,omitempty"`
    13  }
    14  
    15  // MetadataEntry undocumented
    16  type MetadataEntry struct {
    17  	// Object is the base model of MetadataEntry
    18  	Object
    19  	// Key undocumented
    20  	Key *string `json:"key,omitempty"`
    21  	// Value undocumented
    22  	Value *string `json:"value,omitempty"`
    23  }