PayPal\Api\Webhook::addEventType PHP Method

addEventType() public method

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