Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

CustomFormat

Properties

Name Type Description Notes
id int [optional]
name str [optional]
include_custom_format_when_renaming bool [optional]
specifications List[ICustomFormatSpecification] [optional]

Example

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)

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