Interface ConnectorEventHandler

interface ConnectorEventHandler {
    key: string;
    name: string;
    description?: string;
    parametersSchema?: DataSchema;
    implementationType: ConnectorEventImplementationType;
    schema?: DataSchema;
    methods: Record<string, ConnectorMethodImplementation>;
}

Properties

key: string
name: string
description?: string
parametersSchema?: DataSchema
schema?: DataSchema
methods: Record<string, ConnectorMethodImplementation>