Skip to content

PullRequestCommentCreationResponse

Properties

Name Type Description Notes
id str ID of the pull request comment

Example

from lakefs_enterprise_sdk.models.pull_request_comment_creation_response import PullRequestCommentCreationResponse

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

# convert the object into a dict
pull_request_comment_creation_response_dict = pull_request_comment_creation_response_instance.to_dict()
# create an instance of PullRequestCommentCreationResponse from a dict
pull_request_comment_creation_response_form_dict = pull_request_comment_creation_response.from_dict(pull_request_comment_creation_response_dict)