Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

TargetResourceRep

Properties

Name Type Description Notes
links Dict[str, Link] [optional]
name str The name of the resource [optional]
resources List[str] The resource specifier [optional]

Example

from launchdarkly_api.models.target_resource_rep import TargetResourceRep

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

# convert the object into a dict
target_resource_rep_dict = target_resource_rep_instance.to_dict()
# create an instance of TargetResourceRep from a dict
target_resource_rep_from_dict = TargetResourceRep.from_dict(target_resource_rep_dict)

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