Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

EditionListLazyLoaded

Properties

Name Type Description Notes
value List[Edition] [optional] [readonly]
is_loaded bool [optional] [readonly]

Example

from readarr.models.edition_list_lazy_loaded import EditionListLazyLoaded

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

# convert the object into a dict
edition_list_lazy_loaded_dict = edition_list_lazy_loaded_instance.to_dict()
# create an instance of EditionListLazyLoaded from a dict
edition_list_lazy_loaded_from_dict = EditionListLazyLoaded.from_dict(edition_list_lazy_loaded_dict)

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