Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 884 Bytes

AgentsResponse.md

File metadata and controls

28 lines (20 loc) · 884 Bytes

AgentsResponse

Properties

Name Type Description Notes
agents object

Example

from aim_platform_sdk.models.agents_response import AgentsResponse

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

# convert the object into a dict
agents_response_dict = agents_response_instance.to_dict()
# create an instance of AgentsResponse from a dict
agents_response_form_dict = agents_response.from_dict(agents_response_dict)

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