Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

UnlinkResourceSuccessResponse

Properties

Name Type Description Notes
success_count int The number of resources successfully unlinked.
failure_count int The number of resources that failed to unlink.
failed_resources List[FailedResourceLink] Details of resources that failed to unlink. [optional]

Example

from launchdarkly_api.models.unlink_resource_success_response import UnlinkResourceSuccessResponse

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

# convert the object into a dict
unlink_resource_success_response_dict = unlink_resource_success_response_instance.to_dict()
# create an instance of UnlinkResourceSuccessResponse from a dict
unlink_resource_success_response_from_dict = UnlinkResourceSuccessResponse.from_dict(unlink_resource_success_response_dict)

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