Skip to content

Latest commit

History

History
30 lines (21 loc) · 977 Bytes

File metadata and controls

30 lines (21 loc) · 977 Bytes

PatchCommentBody

Properties

NameTypeDescriptionNotes
commentstrComment text
lineintLine number to set the comment on

Example

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]