The workspace member who last updated the record
| Name | Type | Description | Notes |
|---|---|---|---|
| source | str | [optional] |
from twentycrm_client.models.attachment_updated_by import AttachmentUpdatedBy
# TODO update the JSON string below
json = "{}"
# create an instance of AttachmentUpdatedBy from a JSON string
attachment_updated_by_instance = AttachmentUpdatedBy.from_json(json)
# print the JSON string representation of the object
print(AttachmentUpdatedBy.to_json())
# convert the object into a dict
attachment_updated_by_dict = attachment_updated_by_instance.to_dict()
# create an instance of AttachmentUpdatedBy from a dict
attachment_updated_by_from_dict = AttachmentUpdatedBy.from_dict(attachment_updated_by_dict)