export declare type agent_bot_create_update_payload = {
    /**
     * The name of the agent bot
     */
    name?: string;
    /**
     * The description about the agent bot
     */
    description?: string;
    /**
     * The webhook URL for the bot
     */
    outgoing_url?: string;
};
