get_name
get_name
Get the agent’s display name as set at construction time.
Parameters
None.
Returns
str — The agent name.
get_name
Get the agent’s display name as set at construction time.
None.
str — The agent name.
1 from signalwire import AgentBase 2 3 agent = AgentBase(name="support", route="/support") 4 print(agent.get_name()) # "support"