Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

ReportImplementationStatus200Response

Properties

Name Type Description Notes
success bool [optional]
message str [optional]

Example

from rankvectors.models.report_implementation_status200_response import ReportImplementationStatus200Response

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

# convert the object into a dict
report_implementation_status200_response_dict = report_implementation_status200_response_instance.to_dict()
# create an instance of ReportImplementationStatus200Response from a dict
report_implementation_status200_response_from_dict = ReportImplementationStatus200Response.from_dict(report_implementation_status200_response_dict)

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