@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
13 lines (12 loc) • 337 B
TypeScript
/**
* The base class for all requests to an Identity Hub.
*/
export default class HubRequest {
private requestType;
private requestBody;
constructor(requestType: string, requestBody?: any);
/**
* Returns the raw request JSON which will be sent to the Hub.
*/
getRequestJson(): Promise<any>;
}