Skip to content

Commit

Permalink
docs: enhance docs
Browse files Browse the repository at this point in the history
Add details about defaults when parameters are null
  • Loading branch information
ChrisKujawa committed Feb 1, 2024
1 parent 0eeeb45 commit 99c9ae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Client/Api/Builder/ICamundaCloudClientBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ public interface ICamundaCloudClientBuilderFinalStep
/// <summary>
/// Defines the authorization server, from which the access token should be requested.
/// </summary>
/// <param name="url">an url, which points to the authorization server</param>
/// <param name="url">an url, which points to the authorization server, if null it uses the default https://login.cloud.camunda.io/oauth/token.</param>
/// <returns>the next step in building a ICamundaCloudClient</returns>
ICamundaCloudClientBuilderFinalStep UseAuthServer(string url);

/// <summary>
/// Sets the given path to store credentials on disk.
/// </summary>
/// <param name="path">the path where to store the credentials.</param>
/// <param name="path">the path where to store the credentials, if null it uses the default "~/.zeebe" .</param>
/// <returns>the fluent ICamundaCloudClientBuilderFinalStep.</returns>
ICamundaCloudClientBuilderFinalStep UsePersistedStoragePath(string path);

Expand Down

0 comments on commit 99c9ae6

Please sign in to comment.