Example #1
0
 public ApiRequest(string apiKey)
 {
     ApiKey = new AuthKey(apiKey);
     Query  = new List <ApiQuery>();
 }
Example #2
0
 private ApiRequest()
 {
     ApiKey = new AuthKey("");
     Query  = new List <ApiQuery>();
 }