export interface Attribute {
    key: string;
    value: string[];
}
export type KeycloakAttributes = Map<string, string[]>;
