Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 910 Bytes

RenditionEntry.md

File metadata and controls

28 lines (20 loc) · 910 Bytes

RenditionEntry

Properties

Name Type Description Notes
entry Rendition

Example

from alfresco_core_api_client.models.rendition_entry import RenditionEntry

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

# convert the object into a dict
rendition_entry_dict = rendition_entry_instance.to_dict()
# create an instance of RenditionEntry from a dict
rendition_entry_form_dict = rendition_entry.from_dict(rendition_entry_dict)

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