Type Alias BulkResetPasswordResponseDto

BulkResetPasswordResponseDto: {
    failed: {
        message: string;
        reason: "not-found" | "not-issued-account" | "unknown";
        userPkId: string;
    }[];
    succeeded: string[];
}