Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/PayPal/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventList.php
Строк: 136
<?php

namespace PayPalApi;

use 
PayPalCommonPayPalModel;

/**
 * Class WebhookEventList
 *
 * List of webhooks events.
 *
 * @package PayPalApi
 *
 * @property PayPalApiWebhookEvent[] events
 * @property int count
 * @property PayPalApiLinks[] links
 */
class WebhookEventList extends PayPalModel
{
    
/**
     * A list of webhooks events.
     *
     * @param PayPalApiWebhookEvent[] $events
     * 
     * @return $this
     */
    
public function setEvents($events)
    {
        
$this->events $events;
        return 
$this;
    }

    
/**
     * A list of webhooks events.
     *
     * @return PayPalApiWebhookEvent[]
     */
    
public function getEvents()
    {
        return 
$this->events;
    }

    
/**
     * Append Events to the list.
     *
     * @param PayPalApiWebhookEvent $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 PayPalApiWebhookEvent $webhookEvent
     * @return $this
     */
    
public function removeEvent($webhookEvent)
    {
        return 
$this->setEvents(
            
array_diff($this->getEvents(), array($webhookEvent))
        );
    }

    
/**
     * The number of items in each range of results. Note that the response might have fewer items than the requested `page_size` value.
     *
     * @param int $count
     * 
     * @return $this
     */
    
public function setCount($count)
    {
        
$this->count $count;
        return 
$this;
    }

    
/**
     * The number of items in each range of results. Note that the response might have fewer items than the requested `page_size` value.
     *
     * @return int
     */
    
public function getCount()
    {
        return 
$this->count;
    }

    
/**
     * Sets Links
     *
     * @param PayPalApiLinks[] $links
     * 
     * @return $this
     */
    
public function setLinks($links)
    {
        
$this->links $links;
        return 
$this;
    }

    
/**
     * Gets Links
     *
     * @return PayPalApiLinks[]
     */
    
public function getLinks()
    {
        return 
$this->links;
    }

    
/**
     * Append Links to the list.
     *
     * @param PayPalApiLinks $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 PayPalApiLinks $links
     * @return $this
     */
    
public function removeLink($links)
    {
        return 
$this->setLinks(
            
array_diff($this->getLinks(), array($links))
        );
    }

}
Онлайн: 1
Реклама