From 99c9ae6473afcc8dbbbbb773867fe43664286ea1 Mon Sep 17 00:00:00 2001 From: Christopher Zell Date: Thu, 1 Feb 2024 14:56:49 +0100 Subject: [PATCH] docs: enhance docs Add details about defaults when parameters are null --- Client/Api/Builder/ICamundaCloudClientBuilder.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/Api/Builder/ICamundaCloudClientBuilder.cs b/Client/Api/Builder/ICamundaCloudClientBuilder.cs index de4fa5c9..450a0416 100644 --- a/Client/Api/Builder/ICamundaCloudClientBuilder.cs +++ b/Client/Api/Builder/ICamundaCloudClientBuilder.cs @@ -72,14 +72,14 @@ public interface ICamundaCloudClientBuilderFinalStep /// /// Defines the authorization server, from which the access token should be requested. /// - /// an url, which points to the authorization server + /// an url, which points to the authorization server, if null it uses the default https://login.cloud.camunda.io/oauth/token. /// the next step in building a ICamundaCloudClient ICamundaCloudClientBuilderFinalStep UseAuthServer(string url); /// /// Sets the given path to store credentials on disk. /// - /// the path where to store the credentials. + /// the path where to store the credentials, if null it uses the default "~/.zeebe" . /// the fluent ICamundaCloudClientBuilderFinalStep. ICamundaCloudClientBuilderFinalStep UsePersistedStoragePath(string path);