diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go new file mode 100644 index 00000000..58048802 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go @@ -0,0 +1,21 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// Attachment undocumented +type Attachment struct { + // Entity is the base model of Attachment + Entity + // LastModifiedDateTime undocumented + LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"` + // Name undocumented + Name *string `json:"name,omitempty"` + // ContentType undocumented + ContentType *string `json:"contentType,omitempty"` + // Size undocumented + Size *int `json:"size,omitempty"` + // IsInline undocumented + IsInline *bool `json:"isInline,omitempty"` +} |