diff --git a/src/Message/ClientTokenRequest.php b/src/Message/ClientTokenRequest.php index fe6f433..5965359 100644 --- a/src/Message/ClientTokenRequest.php +++ b/src/Message/ClientTokenRequest.php @@ -16,6 +16,11 @@ public function getData() if ($customerId = $this->getCustomerId()) { $data['customerId'] = $customerId; } + + if ($merchantAccountId = $this->getMerchantAccountId()) { + $data['merchantAccountId'] = $merchantAccountId; + } + $data += $this->getOptionData(); return $data;