Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

ExpiringTargetGetResponse

Properties

Name Type Description Notes
items List[ExpiringTarget] A list of expiring targets
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.expiring_target_get_response import ExpiringTargetGetResponse

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

# convert the object into a dict
expiring_target_get_response_dict = expiring_target_get_response_instance.to_dict()
# create an instance of ExpiringTargetGetResponse from a dict
expiring_target_get_response_from_dict = ExpiringTargetGetResponse.from_dict(expiring_target_get_response_dict)

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