Name |
Type |
Description |
Notes |
benchmarks |
object |
|
|
from aim_platform_sdk.models.benchmarks_response import BenchmarksResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BenchmarksResponse from a JSON string
benchmarks_response_instance = BenchmarksResponse.from_json(json)
# print the JSON string representation of the object
print BenchmarksResponse.to_json()
# convert the object into a dict
benchmarks_response_dict = benchmarks_response_instance.to_dict()
# create an instance of BenchmarksResponse from a dict
benchmarks_response_form_dict = benchmarks_response.from_dict(benchmarks_response_dict)
[Back to Model list] [Back to API list] [Back to README]