📄 Source: GoogleFirebaseFcmDataV1beta1Data.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\Fcmdata;
class GoogleFirebaseFcmDataV1beta1Data extends \Google\Model
{
/**
* Count of messages accepted by FCM intended for Android devices. The
* targeted device must have opted in to the collection of usage and
* diagnostic information.
*
* @var string
*/
public $countMessagesAccepted;
/**
* Count of notifications accepted by FCM intended for Android devices. The
* targeted device must have opted in to the collection of usage and
* diagnostic information.
*
* @var string
*/
public $countNotificationsAccepted;
protected $deliveryPerformancePercentsType = GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents::class;
protected $deliveryPerformancePercentsDataType = '';
protected $messageInsightPercentsType = GoogleFirebaseFcmDataV1beta1MessageInsightPercents::class;
protected $messageInsightPercentsDataType = '';
protected $messageOutcomePercentsType = GoogleFirebaseFcmDataV1beta1MessageOutcomePercents::class;
protected $messageOutcomePercentsDataType = '';
protected $proxyNotificationInsightPercentsType = GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents::class;
protected $proxyNotificationInsightPercentsDataType = '';
/**
* Count of messages accepted by FCM intended for Android devices. The
* targeted device must have opted in to the collection of usage and
* diagnostic information.
*
* @param string $countMessagesAccepted
*/
public function setCountMessagesAccepted($countMessagesAccepted)
{
$this->countMessagesAccepted = $countMessagesAccepted;
}
/**
* @return string
*/
public function getCountMessagesAccepted()
{
return $this->countMessagesAccepted;
}
/**
* Count of notifications accepted by FCM intended for Android devices. The
* targeted device must have opted in to the collection of usage and
* diagnostic information.
*
* @param string $countNotificationsAccepted
*/
public function setCountNotificationsAccepted($countNotificationsAccepted)
{
$this->countNotificationsAccepted = $countNotificationsAccepted;
}
/**
* @return string
*/
public function getCountNotificationsAccepted()
{
return $this->countNotificationsAccepted;
}
/**
* Additional information about delivery performance for messages that were
* successfully delivered.
*
* @param GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents $deliveryPerformancePercents
*/
public function setDeliveryPerformancePercents(GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents $deliveryPerformancePercents)
{
$this->deliveryPerformancePercents = $deliveryPerformancePercents;
}
/**
* @return GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents
*/
public function getDeliveryPerformancePercents()
{
return $this->deliveryPerformancePercents;
}
/**
* Additional general insights about message delivery.
*
* @param GoogleFirebaseFcmDataV1beta1MessageInsightPercents $messageInsightPercents
*/
public function setMessageInsightPercents(GoogleFirebaseFcmDataV1beta1MessageInsightPercents $messageInsightPercents)
{
$this->messageInsightPercents = $messageInsightPercents;
}
/**
* @return GoogleFirebaseFcmDataV1beta1MessageInsightPercents
*/
public function getMessageInsightPercents()
{
return $this->messageInsightPercents;
}
/**
* Mutually exclusive breakdown of message delivery outcomes.
*
* @param GoogleFirebaseFcmDataV1beta1MessageOutcomePercents $messageOutcomePercents
*/
public function setMessageOutcomePercents(GoogleFirebaseFcmDataV1beta1MessageOutcomePercents $messageOutcomePercents)
{
$this->messageOutcomePercents = $messageOutcomePercents;
}
/**
* @return GoogleFirebaseFcmDataV1beta1MessageOutcomePercents
*/
public function getMessageOutcomePercents()
{
return $this->messageOutcomePercents;
}
/**
* Additional insights about proxy notification delivery.
*
* @param GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents $proxyNotificationInsightPercents
*/
public function setProxyNotificationInsightPercents(GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents $proxyNotificationInsightPercents)
{
$this->proxyNotificationInsightPercents = $proxyNotificationInsightPercents;
}
/**
* @return GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents
*/
public function getProxyNotificationInsightPercents()
{
return $this->proxyNotificationInsightPercents;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleFirebaseFcmDataV1beta1Data::class, 'Google_Service_Fcmdata_GoogleFirebaseFcmDataV1beta1Data');
← Back