| Name | Type | Description | Notes |
|---|
| comment | str | Comment text | |
| line | int | Line number to set the comment on | |
fromrevengai.models.patch_comment_bodyimportPatchCommentBody# TODO update the JSON string belowjson="{}"# create an instance of PatchCommentBody from a JSON stringpatch_comment_body_instance=PatchCommentBody.from_json(json)
# print the JSON string representation of the objectprint(PatchCommentBody.to_json())
# convert the object into a dictpatch_comment_body_dict=patch_comment_body_instance.to_dict()
# create an instance of PatchCommentBody from a dictpatch_comment_body_from_dict=PatchCommentBody.from_dict(patch_comment_body_dict)[Back to Model list][Back to API list][Back to README]