Current section
Files
Jump to
Current section
Files
lib/adk/tools/application_integration_tool/integration_connector_tool.ex
defmodule ADK.Tool.ApplicationIntegrationTool.IntegrationConnectorTool do
defstruct [
:name,
:description,
:connection_name,
:connection_host,
:connection_service_name,
:entity,
:operation,
:action,
:auth_scheme,
:auth_credential
]
def new(opts) do
struct(__MODULE__, opts)
end
end