Name |
Type |
Description |
Notes |
agent_name |
object |
The unique name of the agent. |
|
webhook_url |
object |
The webhook URL of the agent. |
|
webhook_secret |
object |
The webhook secret of the agent. |
|
from aim_platform_sdk.models.create_agent_request import CreateAgentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateAgentRequest from a JSON string
create_agent_request_instance = CreateAgentRequest.from_json(json)
# print the JSON string representation of the object
print CreateAgentRequest.to_json()
# convert the object into a dict
create_agent_request_dict = create_agent_request_instance.to_dict()
# create an instance of CreateAgentRequest from a dict
create_agent_request_form_dict = create_agent_request.from_dict(create_agent_request_dict)
[Back to Model list] [Back to API list] [Back to README]