PayPal\Api\WebhookEventTypeList::addEventType PHP 메소드

addEventType() 공개 메소드

Append EventTypes to the list.
public addEventType ( WebhookEventType $webhookEventType )
$webhookEventType WebhookEventType
    public function addEventType($webhookEventType)
    {
        if (!$this->getEventTypes()) {
            return $this->setEventTypes(array($webhookEventType));
        } else {
            return $this->setEventTypes(array_merge($this->getEventTypes(), array($webhookEventType)));
        }
    }