Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

File metadata and controls

32 lines (23 loc) · 1.38 KB

LinkResourceSuccessResponse

Properties

Name Type Description Notes
success_count int The number of resources successfully linked.
failure_count int The number of resources that failed to link.
linked_resources ViewLinkedResources [optional]
failed_resources List[FailedResourceLink] Details of resources that failed to link. [optional]

Example

from launchdarkly_api.models.link_resource_success_response import LinkResourceSuccessResponse

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

# convert the object into a dict
link_resource_success_response_dict = link_resource_success_response_instance.to_dict()
# create an instance of LinkResourceSuccessResponse from a dict
link_resource_success_response_from_dict = LinkResourceSuccessResponse.from_dict(link_resource_success_response_dict)

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