The creator of the record
| Name | Type | Description | Notes |
|---|---|---|---|
| source | str | [optional] |
from twentycrm_client.models.attachment_created_by import AttachmentCreatedBy
# TODO update the JSON string below
json = "{}"
# create an instance of AttachmentCreatedBy from a JSON string
attachment_created_by_instance = AttachmentCreatedBy.from_json(json)
# print the JSON string representation of the object
print(AttachmentCreatedBy.to_json())
# convert the object into a dict
attachment_created_by_dict = attachment_created_by_instance.to_dict()
# create an instance of AttachmentCreatedBy from a dict
attachment_created_by_from_dict = AttachmentCreatedBy.from_dict(attachment_created_by_dict)