Skip to content

PullRequestCommentCreation

Properties

Name Type Description Notes
body str
parent_id str id of the parent comment to reply to; omit for a top-level comment [optional]

Example

from lakefs_enterprise_sdk.models.pull_request_comment_creation import PullRequestCommentCreation

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

# convert the object into a dict
pull_request_comment_creation_dict = pull_request_comment_creation_instance.to_dict()
# create an instance of PullRequestCommentCreation from a dict
pull_request_comment_creation_form_dict = pull_request_comment_creation.from_dict(pull_request_comment_creation_dict)