/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * { * body: { * provider: "COMPOSIO", * arguments: { * "arguments": { * "key": "value" * } * } * } * } */ export interface ExecuteIntegrationToolRequest { /** * The response fields to expand for more information. Supported values: 'logs' - includes execution logs from Composio */ expand?: string | string[]; body: Vellum.ComponentsSchemasComposioExecuteToolRequest; }