Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 912 Bytes

CommentPaging.md

File metadata and controls

28 lines (20 loc) · 912 Bytes

CommentPaging

Properties

Name Type Description Notes
list CommentPagingList

Example

from alfresco_core_api_client.models.comment_paging import CommentPaging

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

# convert the object into a dict
comment_paging_dict = comment_paging_instance.to_dict()
# create an instance of CommentPaging from a dict
comment_paging_form_dict = comment_paging.from_dict(comment_paging_dict)

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