| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| episode_id | int | [optional] | |
| series_id | int | [optional] | |
| source_title | str | [optional] | |
| languages | List[Language] | [optional] | |
| quality | QualityModel | [optional] | |
| custom_formats | List[CustomFormatResource] | [optional] | |
| custom_format_score | int | [optional] | |
| quality_cutoff_not_met | bool | [optional] | |
| var_date | datetime | [optional] | |
| download_id | str | [optional] | |
| event_type | EpisodeHistoryEventType | [optional] | |
| data | Dict[str, Optional[str]] | [optional] | |
| episode | EpisodeResource | [optional] | |
| series | SeriesResource | [optional] |
from sonarr.models.history_resource import HistoryResource
# TODO update the JSON string below
json = "{}"
# create an instance of HistoryResource from a JSON string
history_resource_instance = HistoryResource.from_json(json)
# print the JSON string representation of the object
print(HistoryResource.to_json())
# convert the object into a dict
history_resource_dict = history_resource_instance.to_dict()
# create an instance of HistoryResource from a dict
history_resource_from_dict = HistoryResource.from_dict(history_resource_dict)