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

21 lines
543 B
TypeScript

/**
* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_authenticatorconfiginforepresentation
*/
export default interface AuthenticatorConfigInfoRepresentation {
name?: string;
providerId?: string;
helpText?: string;
properties?: ConfigPropertyRepresentation[];
}
export interface ConfigPropertyRepresentation {
name?: string;
label?: string;
helpText?: string;
type?: string;
defaultValue?: any;
options?: string[];
secret?: boolean;
required?: boolean;
placeholder?: string;
}