| Name | Type | Description | Notes |
|---|---|---|---|
| parent | CoreLink |
from launchdarkly_api.models.parent_link import ParentLink
# TODO update the JSON string below
json = "{}"
# create an instance of ParentLink from a JSON string
parent_link_instance = ParentLink.from_json(json)
# print the JSON string representation of the object
print(ParentLink.to_json())
# convert the object into a dict
parent_link_dict = parent_link_instance.to_dict()
# create an instance of ParentLink from a dict
parent_link_from_dict = ParentLink.from_dict(parent_link_dict)