interface SourceProviderAttributes {
    name?: string;
    supportedCapabilities?: { [key: string]: boolean };
    supportedTriggers?: SupportedTrigger[];
}

Properties

name?: string

The name of the source provider.

supportedCapabilities?: { [key: string]: boolean }

The capabilities supported by this source provider.

supportedTriggers?: SupportedTrigger[]

The types of triggers supported by this source provider.