Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 890 Bytes

File metadata and controls

29 lines (20 loc) · 890 Bytes

AddCommentBody

Properties

Name Type Description Notes
comment str

Example

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)

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