| 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] |
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)