| Name | Type | Description | Notes |
|---|---|---|---|
| value | Edition | [optional] | |
| is_loaded | bool | [optional] [readonly] |
from readarr.models.edition_lazy_loaded import EditionLazyLoaded
# TODO update the JSON string below
json = "{}"
# create an instance of EditionLazyLoaded from a JSON string
edition_lazy_loaded_instance = EditionLazyLoaded.from_json(json)
# print the JSON string representation of the object
print(EditionLazyLoaded.to_json())
# convert the object into a dict
edition_lazy_loaded_dict = edition_lazy_loaded_instance.to_dict()
# create an instance of EditionLazyLoaded from a dict
edition_lazy_loaded_from_dict = EditionLazyLoaded.from_dict(edition_lazy_loaded_dict)