# Attachment The Attachment object is of type *PsObject* and represents an [Attachment]() of a specific Item in Fusion 360 Manage. ## Syntax ```powershell $attachment.Title ``` Following properties are available : | Type | Name | Description | |--------|-------------|----------------------------------------------------------------------| | long | Id | The ID of the attachment. | | long | ItemId | The ID of the Item that the file is attached to in Fusion 360 Manage. | | string | Workspace | The name of the workspace containing the attachment. | | string | Title | The title of the attachment. | | string | FileName | The file name of the attachment. | | string | Folder | The folder name of the attachment. | | string | Description | The description of the attachment. | | long | Size | The file size of the attachment (in bytes). | | long | Version | The current version of the attachment. | ## Example ```powershell Id : 266 ItemId : 7624 Workspace : Tasks Title : Moldflow_p680_Enclosure FileName : Moldflow_p680_Enclosure.pdf Folder : Description : Size : 585272 Version : 1 ```