@fairmint/canton-node-sdk
Version:
Canton Node SDK
22 lines • 663 B
TypeScript
/**
* Get details for the currently authenticated user
*
* @example
* ```typescript
* const user = await client.getAuthenticatedUser({});
*
* ```;
*/
export declare const GetAuthenticatedUser: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<Record<string, never>, {
user: {
id: string;
isDeactivated: boolean;
primaryParty?: string | undefined;
metadata?: {
resourceVersion: string;
annotations: Record<string, string>;
} | undefined;
identityProviderId?: string | undefined;
};
}>;
//# sourceMappingURL=get.d.ts.map