Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
rename_episodes |
bool |
|
[optional] |
replace_illegal_characters |
bool |
|
[optional] |
colon_replacement_format |
int |
|
[optional] |
custom_colon_replacement_format |
str |
|
[optional] |
multi_episode_style |
int |
|
[optional] |
standard_episode_format |
str |
|
[optional] |
daily_episode_format |
str |
|
[optional] |
anime_episode_format |
str |
|
[optional] |
series_folder_format |
str |
|
[optional] |
season_folder_format |
str |
|
[optional] |
specials_folder_format |
str |
|
[optional] |
from sonarr.models.naming_config_resource import NamingConfigResource
# TODO update the JSON string below
json = "{}"
# create an instance of NamingConfigResource from a JSON string
naming_config_resource_instance = NamingConfigResource.from_json(json)
# print the JSON string representation of the object
print(NamingConfigResource.to_json())
# convert the object into a dict
naming_config_resource_dict = naming_config_resource_instance.to_dict()
# create an instance of NamingConfigResource from a dict
naming_config_resource_from_dict = NamingConfigResource.from_dict(naming_config_resource_dict)
[Back to Model list] [Back to API list] [Back to README]