| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| rename_movies |
bool |
|
[optional] |
| replace_illegal_characters |
bool |
|
[optional] |
| colon_replacement_format |
ColonReplacementFormat |
|
[optional] |
| standard_movie_format |
str |
|
[optional] |
| movie_folder_format |
str |
|
[optional] |
| include_quality |
bool |
|
[optional] |
| replace_spaces |
bool |
|
[optional] |
| separator |
str |
|
[optional] |
| number_style |
str |
|
[optional] |
from whisparr.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]