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

Latest commit

 

History

History
34 lines (25 loc) · 1.02 KB

File metadata and controls

34 lines (25 loc) · 1.02 KB

Issue

Properties

Name Type Description Notes
id float [optional]
issue_type float [optional]
media MediaInfo [optional]
created_by User [optional]
modified_by User [optional]
comments List[IssueComment] [optional]

Example

from overseerr.models.issue import Issue

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

# convert the object into a dict
issue_dict = issue_instance.to_dict()
# create an instance of Issue from a dict
issue_from_dict = Issue.from_dict(issue_dict)

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