📄 Source: EnterpriseCrmEventbusProtoNotification.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Integrations;
class EnterpriseCrmEventbusProtoNotification extends \Google\Model
{
protected $buganizerNotificationType = EnterpriseCrmEventbusProtoBuganizerNotification::class;
protected $buganizerNotificationDataType = '';
protected $emailAddressType = EnterpriseCrmEventbusProtoAddress::class;
protected $emailAddressDataType = '';
/**
* @var string
*/
public $escalatorQueue;
/**
* @var string
*/
public $pubsubTopic;
protected $requestType = EnterpriseCrmEventbusProtoCustomSuspensionRequest::class;
protected $requestDataType = '';
/**
* @param EnterpriseCrmEventbusProtoBuganizerNotification $buganizerNotification
*/
public function setBuganizerNotification(EnterpriseCrmEventbusProtoBuganizerNotification $buganizerNotification)
{
$this->buganizerNotification = $buganizerNotification;
}
/**
* @return EnterpriseCrmEventbusProtoBuganizerNotification
*/
public function getBuganizerNotification()
{
return $this->buganizerNotification;
}
/**
* @param EnterpriseCrmEventbusProtoAddress $emailAddress
*/
public function setEmailAddress(EnterpriseCrmEventbusProtoAddress $emailAddress)
{
$this->emailAddress = $emailAddress;
}
/**
* @return EnterpriseCrmEventbusProtoAddress
*/
public function getEmailAddress()
{
return $this->emailAddress;
}
/**
* @param string $escalatorQueue
*/
public function setEscalatorQueue($escalatorQueue)
{
$this->escalatorQueue = $escalatorQueue;
}
/**
* @return string
*/
public function getEscalatorQueue()
{
return $this->escalatorQueue;
}
/**
* @param string $pubsubTopic
*/
public function setPubsubTopic($pubsubTopic)
{
$this->pubsubTopic = $pubsubTopic;
}
/**
* @return string
*/
public function getPubsubTopic()
{
return $this->pubsubTopic;
}
/**
* If the out-of-the-box email/pubsub notifications are not suitable and
* custom logic is required, fire a workflow containing all info needed to
* notify users to resume execution.
*
* @param EnterpriseCrmEventbusProtoCustomSuspensionRequest $request
*/
public function setRequest(EnterpriseCrmEventbusProtoCustomSuspensionRequest $request)
{
$this->request = $request;
}
/**
* @return EnterpriseCrmEventbusProtoCustomSuspensionRequest
*/
public function getRequest()
{
return $this->request;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EnterpriseCrmEventbusProtoNotification::class, 'Google_Service_Integrations_EnterpriseCrmEventbusProtoNotification');
← Back