http Client
Set the OkHttpClient.Builder for the NylasClient.
By default, the NylasClient configures it as follows: .protocols(Arrays.asList(Protocol.HTTP_1_1)) .connectTimeout(90, TimeUnit.SECONDS) .readTimeout(90, TimeUnit.SECONDS) .writeTimeout(90, TimeUnit.SECONDS) .addNetworkInterceptor(new HttpLoggingInterceptor()
Parameters
http Client
The custom OkHttpClient.Builder to use.