Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 978 Bytes

MediumResource.md

File metadata and controls

31 lines (22 loc) · 978 Bytes

MediumResource

Properties

Name Type Description Notes
medium_number int [optional]
medium_name str [optional]
medium_format str [optional]

Example

from lidarr.models.medium_resource import MediumResource

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

# convert the object into a dict
medium_resource_dict = medium_resource_instance.to_dict()
# create an instance of MediumResource from a dict
medium_resource_from_dict = MediumResource.from_dict(medium_resource_dict)

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