| Name |
Type |
Description |
Notes |
| id |
int |
ID of the final result |
|
| created_on |
datetime |
Time of creation of the final result |
|
| job_id |
int |
ID of the job |
|
| final_result |
Dict[str, object] |
The final results of the job |
|
from compute_api_client.models.final_result import FinalResult
# TODO update the JSON string below
json = "{}"
# create an instance of FinalResult from a JSON string
final_result_instance = FinalResult.from_json(json)
# print the JSON string representation of the object
print(FinalResult.to_json())
# convert the object into a dict
final_result_dict = final_result_instance.to_dict()
# create an instance of FinalResult from a dict
final_result_from_dict = FinalResult.from_dict(final_result_dict)
[Back to Model list] [Back to API list] [Back to README]