Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

File metadata and controls

34 lines (25 loc) · 1.23 KB

DevelopmentConfigResource

Properties

Name Type Description Notes
id int [optional]
metadata_source str [optional]
console_log_level str [optional]
log_sql bool [optional]
log_rotate int [optional]
filter_sentry_events bool [optional]

Example

from readarr.models.development_config_resource import DevelopmentConfigResource

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

# convert the object into a dict
development_config_resource_dict = development_config_resource_instance.to_dict()
# create an instance of DevelopmentConfigResource from a dict
development_config_resource_from_dict = DevelopmentConfigResource.from_dict(development_config_resource_dict)

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