null
, i.e. using
+ * the system's default tempopary folder.
+ * @return Temp folder path
+ */
+ String getTempFolderPath();
+
+ /**
+ * Set temp folder path
+ * @param tempFolderPath Temp folder path
+ * @return API client
+ */
+ ApiClient setTempFolderPath(String tempFolderPath);
+
+ /**
+ * Connect timeout (in milliseconds).
+ * @return Connection timeout
+ */
+ int getConnectTimeout();
+
+ /**
+ * Set the connect timeout (in milliseconds).
+ * A value of 0 means no timeout, otherwise values must be between 1 and {@link Integer#MAX_VALUE}.
+ * @param connectionTimeout Connection timeout in milliseconds
+ * @return API client
+ */
+ ApiClient setConnectTimeout(int connectionTimeout);
+
+ /**
+ * read timeout (in milliseconds).
+ * @return Read timeout
+ */
+ int getReadTimeout();
+
+ /**
+ * Set the read timeout (in milliseconds).
+ * A value of 0 means no timeout, otherwise values must be between 1 and
+ * {@link Integer#MAX_VALUE}.
+ * @param readTimeout Read timeout in milliseconds
+ * @return API client
+ */
+ ApiClient setReadTimeout(int readTimeout);
+
+ /**
+ * Format the given parameter object into string.
+ * @param param Object
+ * @return Object in string format
+ */
+ String parameterToString(Object param);
+
+ /**
+ * Format to {@code Pair} objects.
+ * @param collectionFormat Collection format
+ * @param name Name
+ * @param value Value
+ * @return List of pairs
+ */
+ List