You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromreadarr.models.metadata_profile_lazy_loadedimportMetadataProfileLazyLoaded# TODO update the JSON string belowjson="{}"# create an instance of MetadataProfileLazyLoaded from a JSON stringmetadata_profile_lazy_loaded_instance=MetadataProfileLazyLoaded.from_json(json)
# print the JSON string representation of the objectprint(MetadataProfileLazyLoaded.to_json())
# convert the object into a dictmetadata_profile_lazy_loaded_dict=metadata_profile_lazy_loaded_instance.to_dict()
# create an instance of MetadataProfileLazyLoaded from a dictmetadata_profile_lazy_loaded_from_dict=MetadataProfileLazyLoaded.from_dict(metadata_profile_lazy_loaded_dict)