Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 851 Bytes

CommentBody.md

File metadata and controls

28 lines (20 loc) · 851 Bytes

CommentBody

Properties

Name Type Description Notes
content str

Example

from alfresco_core_api_client.models.comment_body import CommentBody

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

# convert the object into a dict
comment_body_dict = comment_body_instance.to_dict()
# create an instance of CommentBody from a dict
comment_body_form_dict = comment_body.from_dict(comment_body_dict)

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