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

12 lines
287 B
TypeScript

/**
* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_synchronizationresult
*/
export default interface SynchronizationResultRepresentation {
ignored?: boolean;
added?: number;
updated?: number;
removed?: number;
failed?: number;
status?: string;
}