| Name | Type | Description | Notes |
|---|---|---|---|
| comment | str |
from ibm_gdsc_sdk_saas.models.add_comment_body import AddCommentBody
# TODO update the JSON string below
json = "{}"
# create an instance of AddCommentBody from a JSON string
add_comment_body_instance = AddCommentBody.from_json(json)
# print the JSON string representation of the object
print(AddCommentBody.to_json())
# convert the object into a dict
add_comment_body_dict = add_comment_body_instance.to_dict()
# create an instance of AddCommentBody from a dict
add_comment_body_from_dict = AddCommentBody.from_dict(add_comment_body_dict)