| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] | |
| include_custom_format_when_renaming | bool | [optional] | |
| specifications | List[ICustomFormatSpecification] | [optional] |
from readarr.models.custom_format import CustomFormat
# TODO update the JSON string below
json = "{}"
# create an instance of CustomFormat from a JSON string
custom_format_instance = CustomFormat.from_json(json)
# print the JSON string representation of the object
print(CustomFormat.to_json())
# convert the object into a dict
custom_format_dict = custom_format_instance.to_dict()
# create an instance of CustomFormat from a dict
custom_format_from_dict = CustomFormat.from_dict(custom_format_dict)