NeahNew/node_modules/@keycloak/keycloak-admin-client/lib/defs/authenticationFlowRepresentation.d.ts
2025-05-03 15:36:20 +02:00

14 lines
492 B
TypeScript

import type AuthenticationExecutionExportRepresentation from "./authenticationExecutionExportRepresentation.js";
/**
* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_authenticationflowrepresentation
*/
export default interface AuthenticationFlowRepresentation {
id?: string;
alias?: string;
description?: string;
providerId?: string;
topLevel?: boolean;
builtIn?: boolean;
authenticationExecutions?: AuthenticationExecutionExportRepresentation[];
}