Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 991 Bytes

ResultSetRowEntry.md

File metadata and controls

29 lines (21 loc) · 991 Bytes

ResultSetRowEntry

A row in the result set

Properties

Name Type Description Notes
entry ResultNode

Example

from alfresco_search_api_client.models.result_set_row_entry import ResultSetRowEntry

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

# convert the object into a dict
result_set_row_entry_dict = result_set_row_entry_instance.to_dict()
# create an instance of ResultSetRowEntry from a dict
result_set_row_entry_form_dict = result_set_row_entry.from_dict(result_set_row_entry_dict)

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