Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

ParentResourceRep

Properties

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]

Example

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)

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