Payment Experience(Web profiles) handling

This commit is contained in:
Eric Dion
2014-10-05 21:25:34 -04:00
parent d42e6ee541
commit 318504e1dc
6 changed files with 474 additions and 2 deletions

View File

@@ -0,0 +1,37 @@
<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
use PayPal\Rest\ApiContext;
/**
* Class WebProfiles
*
* @property array|\PayPal\Api\WebProfile $web_profiles
*/
class WebProfiles extends PPModel {
/**
* List of WebProfiles belonging to a merchant.
*
* @param array|\PayPal\Api\WebProfile $web_profiles
*/
public function setWebProfiles($web_profiles) {
$this->web_profiles = $web_profiles;
return $this;
}
/**
* List of web profiles belonging to a merchant.
*
* @return \PayPal\Api\WebProfile
*/
public function getWebProfiles() {
return $this->web_profiles;
}
}