| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] |
from seerr.models.override_rule import OverrideRule
# TODO update the JSON string below
json = "{}"
# create an instance of OverrideRule from a JSON string
override_rule_instance = OverrideRule.from_json(json)
# print the JSON string representation of the object
print(OverrideRule.to_json())
# convert the object into a dict
override_rule_dict = override_rule_instance.to_dict()
# create an instance of OverrideRule from a dict
override_rule_from_dict = OverrideRule.from_dict(override_rule_dict)