| Name | Type | Description | Notes |
|---|---|---|---|
| resolved | Dict[str, object] | ||
| layers | List[ConfigInheritanceViewLayersInner] |
from stratum.models.config_inheritance_view import ConfigInheritanceView
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigInheritanceView from a JSON string
config_inheritance_view_instance = ConfigInheritanceView.from_json(json)
# print the JSON string representation of the object
print(ConfigInheritanceView.to_json())
# convert the object into a dict
config_inheritance_view_dict = config_inheritance_view_instance.to_dict()
# create an instance of ConfigInheritanceView from a dict
config_inheritance_view_from_dict = ConfigInheritanceView.from_dict(config_inheritance_view_dict)