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

14 lines
328 B
TypeScript

/**
* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_configpropertyrepresentation
*/
export interface ConfigPropertyRepresentation {
name?: string;
label?: string;
helpText?: string;
type?: string;
defaultValue?: object;
options?: string[];
secret?: boolean;
required?: boolean;
}