Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1013 Bytes

File metadata and controls

30 lines (21 loc) · 1013 Bytes

AttachmentUpdatedBy

The workspace member who last updated the record

Properties

Name Type Description Notes
source str [optional]

Example

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)

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