/**
  *
  * @param Gateway $gateway
  */
 public function __construct($gateway)
 {
     $this->_gateway = $gateway;
     $this->_config = $gateway->config;
     $this->_config->assertHasAccessTokenOrKeys();
     $this->_http = new Http($gateway->config);
 }