8cb202eb29
* Add JavaScript admin client to repository * Apply review feedback Co-authored-by: Stian Thorgersen <stian@redhat.com> --------- Co-authored-by: Stian Thorgersen <stian@redhat.com>
14 lines
479 B
TypeScript
14 lines
479 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[];
|
|
}
|