Skip to content

Commit

Permalink
Add support for providing experience profile id
Browse files Browse the repository at this point in the history
  • Loading branch information
Jellyfrog committed Feb 24, 2016
1 parent 2b3624b commit aa33316
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/Message/RestAuthorizeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ public function getData()
'currency' => $this->getCurrency(),
),
)
)
),
'experience_profile_id' => $this->getExperienceProfileId()
);

$items = $this->getItems();
Expand Down Expand Up @@ -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.
*
Expand Down

0 comments on commit aa33316

Please sign in to comment.