keycloak-scim/js/libs/keycloak-admin-client/src/defs/authenticationFlowRepresentation.ts

15 lines
479 B
TypeScript
Raw Normal View History

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[];
}