forked from LiveCarta/PayPal-PHP-SDK
Auto-generated code for Webhooks API
This commit is contained in:
149
lib/PayPal/Api/WebhookEventList.php
Normal file
149
lib/PayPal/Api/WebhookEventList.php
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
|
||||
namespace PayPal\Api;
|
||||
|
||||
use PayPal\Common\PPModel;
|
||||
|
||||
/**
|
||||
* Class WebhookEventList
|
||||
*
|
||||
* List of Webhooks event resources
|
||||
*
|
||||
* @package PayPal\Api
|
||||
*
|
||||
* @property \PayPal\Api\WebhookEvent[] events
|
||||
* @property int count
|
||||
* @property \PayPal\Api\Links[] links
|
||||
*/
|
||||
class WebhookEventList extends PPModel
|
||||
{
|
||||
/**
|
||||
* A list of Webhooks event resources
|
||||
*
|
||||
* @param \PayPal\Api\WebhookEvent[] $events
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setEvents($events)
|
||||
{
|
||||
$this->events = $events;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* A list of Webhooks event resources
|
||||
*
|
||||
* @return \PayPal\Api\WebhookEvent[]
|
||||
*/
|
||||
public function getEvents()
|
||||
{
|
||||
return $this->events;
|
||||
}
|
||||
|
||||
/**
|
||||
* Append Events to the list.
|
||||
*
|
||||
* @param \PayPal\Api\WebhookEvent $webhookEvent
|
||||
* @return $this
|
||||
*/
|
||||
public function addEvent($webhookEvent)
|
||||
{
|
||||
if (!$this->getEvents()) {
|
||||
return $this->setEvents(array($webhookEvent));
|
||||
} else {
|
||||
return $this->setEvents(
|
||||
array_merge($this->getEvents(), array($webhookEvent))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove Events from the list.
|
||||
*
|
||||
* @param \PayPal\Api\WebhookEvent $webhookEvent
|
||||
* @return $this
|
||||
*/
|
||||
public function removeEvent($webhookEvent)
|
||||
{
|
||||
return $this->setEvents(
|
||||
array_diff($this->getEvents(), array($webhookEvent))
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Number of items returned in each range of results. Note that the last results range could have fewer items than the requested number of items.
|
||||
*
|
||||
* @param int $count
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setCount($count)
|
||||
{
|
||||
$this->count = $count;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Number of items returned in each range of results. Note that the last results range could have fewer items than the requested number of items.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getCount()
|
||||
{
|
||||
return $this->count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets Links
|
||||
*
|
||||
* @param \PayPal\Api\Links[] $links
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setLinks($links)
|
||||
{
|
||||
$this->links = $links;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets Links
|
||||
*
|
||||
* @return \PayPal\Api\Links[]
|
||||
*/
|
||||
public function getLinks()
|
||||
{
|
||||
return $this->links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Append Links to the list.
|
||||
*
|
||||
* @param \PayPal\Api\Links $links
|
||||
* @return $this
|
||||
*/
|
||||
public function addLink($links)
|
||||
{
|
||||
if (!$this->getLinks()) {
|
||||
return $this->setLinks(array($links));
|
||||
} else {
|
||||
return $this->setLinks(
|
||||
array_merge($this->getLinks(), array($links))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove Links from the list.
|
||||
*
|
||||
* @param \PayPal\Api\Links $links
|
||||
* @return $this
|
||||
*/
|
||||
public function removeLink($links)
|
||||
{
|
||||
return $this->setLinks(
|
||||
array_diff($this->getLinks(), array($links))
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user