github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelAttachment.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Attachment undocumented
     8  type Attachment struct {
     9  	// Entity is the base model of Attachment
    10  	Entity
    11  	// LastModifiedDateTime undocumented
    12  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    13  	// Name undocumented
    14  	Name *string `json:"name,omitempty"`
    15  	// ContentType undocumented
    16  	ContentType *string `json:"contentType,omitempty"`
    17  	// Size undocumented
    18  	Size *int `json:"size,omitempty"`
    19  	// IsInline undocumented
    20  	IsInline *bool `json:"isInline,omitempty"`
    21  }