public HttpService(MixerAPI mixer, string path)
 {
     this._http     = mixer.Http;
     this._basePath = path;
 }
 public MixerAPI(string oauthToken = null)
 {
     this.Http            = new MixerHttpClient(DEFAULT_BASE_PATH, oauthToken);
     this.UsersService    = new UsersService(this);
     this.ChannelsService = new ChannelsService(this);
 }