Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

ExpiringUserTargetGetResponse

Properties

Name Type Description Notes
items List[ExpiringUserTargetItem] An array of expiring user targets
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.expiring_user_target_get_response import ExpiringUserTargetGetResponse

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

# convert the object into a dict
expiring_user_target_get_response_dict = expiring_user_target_get_response_instance.to_dict()
# create an instance of ExpiringUserTargetGetResponse from a dict
expiring_user_target_get_response_from_dict = ExpiringUserTargetGetResponse.from_dict(expiring_user_target_get_response_dict)

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