Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

CustomFormatResource

Properties

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

Example

from radarr.models.custom_format_resource import CustomFormatResource

# TODO update the JSON string below
json = "{}"
# create an instance of CustomFormatResource from a JSON string
custom_format_resource_instance = CustomFormatResource.from_json(json)
# print the JSON string representation of the object
print(CustomFormatResource.to_json())

# convert the object into a dict
custom_format_resource_dict = custom_format_resource_instance.to_dict()
# create an instance of CustomFormatResource from a dict
custom_format_resource_from_dict = CustomFormatResource.from_dict(custom_format_resource_dict)

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