Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 865 Bytes

RatingEntry.md

File metadata and controls

28 lines (20 loc) · 865 Bytes

RatingEntry

Properties

Name Type Description Notes
entry Rating

Example

from alfresco_core_api_client.models.rating_entry import RatingEntry

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

# convert the object into a dict
rating_entry_dict = rating_entry_instance.to_dict()
# create an instance of RatingEntry from a dict
rating_entry_form_dict = rating_entry.from_dict(rating_entry_dict)

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