* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @copyright PayPal */ namespace PaypalAddons\classes\API\Request\V_1; abstract class RequestAbstractMB extends RequestAbstract { public function getApiContext($mode_order = null) { $apiContext = parent::getApiContext($mode_order); $apiContext->addRequestHeader('PayPal-Partner-Attribution-Id', $this->method->getPaypalPartnerId()); return $apiContext; } }