diff --git a/src/Message/RestAuthorizeRequest.php b/src/Message/RestAuthorizeRequest.php index c75db20..68fe797 100644 --- a/src/Message/RestAuthorizeRequest.php +++ b/src/Message/RestAuthorizeRequest.php @@ -231,7 +231,8 @@ public function getData() 'currency' => $this->getCurrency(), ), ) - ) + ), + 'experience_profile_id' => $this->getExperienceProfileId() ); $items = $this->getItems(); @@ -302,6 +303,27 @@ public function getData() return $data; } + /** + * Get the experience profile id + * + * @return string + */ + public function getExperienceProfileId() + { + return $this->getParameter('experienceProfileId'); + } + + /** + * Set the experience profile id + * + * @param string $value + * @return RestAuthorizeRequest provides a fluent interface. + */ + public function setExperienceProfileId($value) + { + return $this->setParameter('experienceProfileId', $value); + } + /** * Get transaction description. *