This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/WebProfiles.php
2014-10-05 21:25:34 -04:00

38 lines
614 B
PHP

<?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;
}
}