UNPKG

botframework-connector

Version:

Bot Connector is autorest generated connector client.

24 lines 640 B
import type { ClaimsIdentity } from './claimsIdentity'; import type { ConnectorFactory } from './connectorFactory'; /** * The result from a call to authenticate a Bot Framework Protocol request. */ export declare type AuthenticateRequestResult = { /** * A value for the Audience. */ audience: string; /** * A value for the ClaimsIdentity. */ claimsIdentity: ClaimsIdentity; /** * A value for the CallerId. */ callerId?: string; /** * A value for the ConnectorFactory. */ connectorFactory?: ConnectorFactory; }; //# sourceMappingURL=authenticateRequestResult.d.ts.map