botframework-connector
Version:
Bot Connector is autorest generated connector client.
25 lines (24 loc) • 655 B
TypeScript
import { ClaimsIdentity } from './claimsIdentity';
import { 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