Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.06 KB

BackupResource.md

File metadata and controls

34 lines (25 loc) · 1.06 KB

BackupResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
path str [optional]
type BackupType [optional]
size int [optional]
time datetime [optional]

Example

from lidarr.models.backup_resource import BackupResource

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

# convert the object into a dict
backup_resource_dict = backup_resource_instance.to_dict()
# create an instance of BackupResource from a dict
backup_resource_from_dict = BackupResource.from_dict(backup_resource_dict)

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