public RestPuller(Auth auth)
 {
     this.auth = auth;
     restClient.Authenticator = this.auth.Authenticator;
 }
 public RestPuller()
 {
     this.auth = new Auth("Anonymous", "");
     restClient.Authenticator = this.auth.Authenticator;
 }