Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

ViewSummary

Properties

Name Type Description Notes
links ParentAndSelfLinks [optional]
key str The key of the view.
name str The human-readable name of the view.
resource_summary ViewResourceSummary

Example

from launchdarkly_api.models.view_summary import ViewSummary

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

# convert the object into a dict
view_summary_dict = view_summary_instance.to_dict()
# create an instance of ViewSummary from a dict
view_summary_from_dict = ViewSummary.from_dict(view_summary_dict)

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