Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ImplementationResponse

Properties

Name Type Description Notes
success bool Whether any implementations succeeded
results List[ImplementationResult] Individual implementation results
summary ImplementationSummary

Example

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)

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