| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | Whether any implementations succeeded | |
| results | List[ImplementationResult] | Individual implementation results | |
| summary | ImplementationSummary |
from rankvectors.models.implementation_response import ImplementationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ImplementationResponse from a JSON string
implementation_response_instance = ImplementationResponse.from_json(json)
# print the JSON string representation of the object
print(ImplementationResponse.to_json())
# convert the object into a dict
implementation_response_dict = implementation_response_instance.to_dict()
# create an instance of ImplementationResponse from a dict
implementation_response_from_dict = ImplementationResponse.from_dict(implementation_response_dict)