| Name | Type | Description | Notes |
|---|---|---|---|
| links | Dict[str, Link] | [optional] | |
| name | str | The name of the parent resource | [optional] |
| resource | str | The parent's resource specifier | [optional] |
from launchdarkly_api.models.parent_resource_rep import ParentResourceRep
# TODO update the JSON string below
json = "{}"
# create an instance of ParentResourceRep from a JSON string
parent_resource_rep_instance = ParentResourceRep.from_json(json)
# print the JSON string representation of the object
print(ParentResourceRep.to_json())
# convert the object into a dict
parent_resource_rep_dict = parent_resource_rep_instance.to_dict()
# create an instance of ParentResourceRep from a dict
parent_resource_rep_from_dict = ParentResourceRep.from_dict(parent_resource_rep_dict)