Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 945 Bytes

File metadata and controls

31 lines (22 loc) · 945 Bytes

IssueComment

Properties

Name Type Description Notes
id float [optional]
user User [optional]
message str [optional]

Example

from overseerr.models.issue_comment import IssueComment

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

# convert the object into a dict
issue_comment_dict = issue_comment_instance.to_dict()
# create an instance of IssueComment from a dict
issue_comment_from_dict = IssueComment.from_dict(issue_comment_dict)

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