Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

ParentAndSelfLinks

The location and content type of related resources

Properties

Name Type Description Notes
var_self CoreLink
parent CoreLink

Example

from launchdarkly_api.models.parent_and_self_links import ParentAndSelfLinks

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

# convert the object into a dict
parent_and_self_links_dict = parent_and_self_links_instance.to_dict()
# create an instance of ParentAndSelfLinks from a dict
parent_and_self_links_from_dict = ParentAndSelfLinks.from_dict(parent_and_self_links_dict)

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