From 3e7ede49951b621d4cc16ac6e64913a2b3eb5386 Mon Sep 17 00:00:00 2001 From: Hasan Afzal Date: Thu, 15 Jan 2026 12:55:35 -0500 Subject: [PATCH] Update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ce839f99..061363a8 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ import com.merge.api.core.RequestOptions; // Client level MergeApiClient client = MergeApiClient .builder() - .timeout(10) + .timeout(50) .build(); // Request level @@ -185,7 +185,7 @@ client.ats().accountDetails().retrieve( ..., RequestOptions .builder() - .timeout(10) + .timeout(50) .build() ); ```