Skip to content

Commit

Permalink
Merge pull request #109 from Jellyfrog/master
Browse files Browse the repository at this point in the history
Add support for providing experience profile id
  • Loading branch information
delatbabel committed Feb 29, 2016
2 parents 82ae725 + aa33316 commit 97fc3b1
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 97fc3b1

Please sign in to comment.