コード例 #1
0
ファイル: Client.cs プロジェクト: dorana/airmee.NET
 /// <summary>
 /// Create a client for Airmee API
 /// </summary>
 /// <param name="jwtToken">The long lived JWT of the place</param>
 /// <param name="placeId">Id of the pickup place from where the request originates</param>
 /// <param name="environment">States if this is Test or Live Environment</param>
 public Client(string jwtToken, string placeId, EnvironmentType environment)
 {
     _apiCaller      = APICaller.CreateCaller(jwtToken, environment);
     _defaultPlaceId = placeId;
 }