Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

ConfigInheritanceView

Properties

Name Type Description Notes
resolved Dict[str, object]
layers List[ConfigInheritanceViewLayersInner]

Example

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)

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