Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

CreateIssueCommentRequest

Properties

Name Type Description Notes
message str

Example

from overseerr.models.create_issue_comment_request import CreateIssueCommentRequest

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

# convert the object into a dict
create_issue_comment_request_dict = create_issue_comment_request_instance.to_dict()
# create an instance of CreateIssueCommentRequest from a dict
create_issue_comment_request_from_dict = CreateIssueCommentRequest.from_dict(create_issue_comment_request_dict)

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