Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 1.11 KB

File metadata and controls

43 lines (36 loc) · 1.11 KB
title description author ms.localizationpriority ms.subservice doc_type
attachmentInfo resource type
Represents the attributes of an attachment.
avijityadav
medium
outlook
resourcePageType

attachmentInfo resource type

Namespace: microsoft.graph

Represents the attributes of an attachment.

Properties

Property Type Description
attachmentType attachmentType The type of the attachment. The possible values are: file, item, reference. Required.
contentType String The nature of the data in the attachment. Optional.
name String The display name of the attachment. This can be a descriptive string and doesn't have to be the actual file name. Required.
size Int64 The length of the attachment in bytes. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.attachmentInfo",
  "attachmentType": "String",
  "contentType": "String",
  "name": "String",
  "size": "Int64"
}