Interface ConnectorAuthIntegrationAppToken

interface ConnectorAuthIntegrationAppToken {
    description?: string;
    ui?: { schema?: DataSchema; helpUri?: string };
    title?: string;
    credentialsSchema?: DataSchema;
    customCredentialsSchema?: DataSchema;
    makeApiClient?: ConnectorMethodImplementationBase;
    refreshCredentials?: ConnectorMethodImplementationBase;
    test?: ConnectorMethodImplementationBase;
    enabled?: any;
    type: "integration-app-token";
}

Hierarchy (View Summary)

Properties

description?: string
ui?: { schema?: DataSchema; helpUri?: string }
title?: string
credentialsSchema?: DataSchema
customCredentialsSchema?: DataSchema
enabled?: any
type: "integration-app-token"