Keycloak
20 строк · 494.0 Байт
1/**
2* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_authenticatorconfiginforepresentation
3*/
4export default interface AuthenticatorConfigInfoRepresentation {5name?: string;6providerId?: string;7helpText?: string;8properties?: ConfigPropertyRepresentation[];9}
10
11export interface ConfigPropertyRepresentation {12name?: string;13label?: string;14helpText?: string;15type?: string;16defaultValue?: any;17options?: string[];18secret?: boolean;19required?: boolean;20}
21