An attachment
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Attachment name | [optional] |
| file | List[AttachmentFileInner] | Attachment file | [optional] |
| full_path | str | Attachment full path | [optional] |
| file_category | str | Attachment file category | [optional] |
| created_by | AttachmentCreatedBy | [optional] | |
| updated_by | AttachmentUpdatedBy | [optional] | |
| target_note | str | Attachment target | [optional] |
| target_task | str | Attachment target | [optional] |
| target_person | str | Attachment target | [optional] |
| target_company | str | Attachment target | [optional] |
| target_opportunity | str | Attachment target | [optional] |
| target_dashboard | str | Attachment target | [optional] |
| target_workflow | str | Attachment target | [optional] |
from twentycrm_client.models.attachment import Attachment
# TODO update the JSON string below
json = "{}"
# create an instance of Attachment from a JSON string
attachment_instance = Attachment.from_json(json)
# print the JSON string representation of the object
print(Attachment.to_json())
# convert the object into a dict
attachment_dict = attachment_instance.to_dict()
# create an instance of Attachment from a dict
attachment_from_dict = Attachment.from_dict(attachment_dict)