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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // MimeContent undocumented
     6  type MimeContent struct {
     7  	// Object is the base model of MimeContent
     8  	Object
     9  	// Type Indicates the content mime type.
    10  	Type *string `json:"type,omitempty"`
    11  	// Value The byte array that contains the actual content.
    12  	Value *Binary `json:"value,omitempty"`
    13  }