Skip to content

Commit

Permalink
Added some constants documentation #33.
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Oct 20, 2017
1 parent 6769595 commit 9702302
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion BunqSdk/Http/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ namespace Bunq.Sdk.Http
public class ApiClient
{

/// <summary>
/// Endpoints not requiring active session for the request to succeed.
/// </summary>
private const string DEVICE_SERVER_URL = "device-server";
private const string INSTALLATION_URL = "installation";
private const string SESSION_SERVER_URL = "session-server";

private static readonly string[] URIS_NOT_REQUIRING_ACTIVE_SESSION = new string[]
{
DEVICE_SERVER_URL,
Expand Down

0 comments on commit 9702302

Please sign in to comment.