24 lines
No EOL
640 B
TypeScript
24 lines
No EOL
640 B
TypeScript
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
|