Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.08 KB

CreateAgentRequest.md

File metadata and controls

30 lines (22 loc) · 1.08 KB

CreateAgentRequest

Properties

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.

Example

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]