Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 852 Bytes

File metadata and controls

29 lines (20 loc) · 852 Bytes

OverrideRule

Properties

Name Type Description Notes
id str [optional]

Example

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)

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