You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Files inside the archive, with paths relative to the archive root
has_next
bool
Whether a further page of entries follows this one.
page
int
Page number of this response (1-indexed).
page_size
int
Number of entries per page.
total_count
int
Total number of file entries in the archive, ignoring pagination.
Example
fromrevengai.models.list_archive_contents_output_bodyimportListArchiveContentsOutputBody# TODO update the JSON string belowjson="{}"# create an instance of ListArchiveContentsOutputBody from a JSON stringlist_archive_contents_output_body_instance=ListArchiveContentsOutputBody.from_json(json)
# print the JSON string representation of the objectprint(ListArchiveContentsOutputBody.to_json())
# convert the object into a dictlist_archive_contents_output_body_dict=list_archive_contents_output_body_instance.to_dict()
# create an instance of ListArchiveContentsOutputBody from a dictlist_archive_contents_output_body_from_dict=ListArchiveContentsOutputBody.from_dict(list_archive_contents_output_body_dict)