Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 897 Bytes

File metadata and controls

29 lines (20 loc) · 897 Bytes

ViewsSelfLink

Properties

Name Type Description Notes
var_self CoreLink

Example

from launchdarkly_api.models.views_self_link import ViewsSelfLink

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

# convert the object into a dict
views_self_link_dict = views_self_link_instance.to_dict()
# create an instance of ViewsSelfLink from a dict
views_self_link_from_dict = ViewsSelfLink.from_dict(views_self_link_dict)

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