Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 865 Bytes

PersonEntry.md

File metadata and controls

28 lines (20 loc) · 865 Bytes

PersonEntry

Properties

Name Type Description Notes
entry Person

Example

from alfresco_core_api_client.models.person_entry import PersonEntry

# TODO update the JSON string below
json = "{}"
# create an instance of PersonEntry from a JSON string
person_entry_instance = PersonEntry.from_json(json)
# print the JSON string representation of the object
print PersonEntry.to_json()

# convert the object into a dict
person_entry_dict = person_entry_instance.to_dict()
# create an instance of PersonEntry from a dict
person_entry_form_dict = person_entry.from_dict(person_entry_dict)

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