customer = $customer; } /** * @return string */ public function getCustomer() { return $this->customer; } /** * Type of event which happened for the customer. * * Accepted values: TYPE_UNSPECIFIED, PRIMARY_DOMAIN_CHANGED, * PRIMARY_DOMAIN_VERIFIED * * @param self::EVENT_TYPE_* $eventType */ public function setEventType($eventType) { $this->eventType = $eventType; } /** * @return self::EVENT_TYPE_* */ public function getEventType() { return $this->eventType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudChannelV1alpha1CustomerEvent::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1alpha1CustomerEvent');