Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 990 Bytes

File metadata and controls

30 lines (21 loc) · 990 Bytes

AttachmentCreatedBy

The creator of the record

Properties

Name Type Description Notes
source str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]