source: vendor/google/apiclient-services/src/Fcmdata/GoogleFirebaseFcmDataV1beta1Data.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Fcmdata;
19
20class GoogleFirebaseFcmDataV1beta1Data extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $countMessagesAccepted;
26 /**
27 * @var string
28 */
29 public $countNotificationsAccepted;
30 protected $deliveryPerformancePercentsType = GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents::class;
31 protected $deliveryPerformancePercentsDataType = '';
32 protected $messageInsightPercentsType = GoogleFirebaseFcmDataV1beta1MessageInsightPercents::class;
33 protected $messageInsightPercentsDataType = '';
34 protected $messageOutcomePercentsType = GoogleFirebaseFcmDataV1beta1MessageOutcomePercents::class;
35 protected $messageOutcomePercentsDataType = '';
36 protected $proxyNotificationInsightPercentsType = GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents::class;
37 protected $proxyNotificationInsightPercentsDataType = '';
38
39 /**
40 * @param string
41 */
42 public function setCountMessagesAccepted($countMessagesAccepted)
43 {
44 $this->countMessagesAccepted = $countMessagesAccepted;
45 }
46 /**
47 * @return string
48 */
49 public function getCountMessagesAccepted()
50 {
51 return $this->countMessagesAccepted;
52 }
53 /**
54 * @param string
55 */
56 public function setCountNotificationsAccepted($countNotificationsAccepted)
57 {
58 $this->countNotificationsAccepted = $countNotificationsAccepted;
59 }
60 /**
61 * @return string
62 */
63 public function getCountNotificationsAccepted()
64 {
65 return $this->countNotificationsAccepted;
66 }
67 /**
68 * @param GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents
69 */
70 public function setDeliveryPerformancePercents(GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents $deliveryPerformancePercents)
71 {
72 $this->deliveryPerformancePercents = $deliveryPerformancePercents;
73 }
74 /**
75 * @return GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents
76 */
77 public function getDeliveryPerformancePercents()
78 {
79 return $this->deliveryPerformancePercents;
80 }
81 /**
82 * @param GoogleFirebaseFcmDataV1beta1MessageInsightPercents
83 */
84 public function setMessageInsightPercents(GoogleFirebaseFcmDataV1beta1MessageInsightPercents $messageInsightPercents)
85 {
86 $this->messageInsightPercents = $messageInsightPercents;
87 }
88 /**
89 * @return GoogleFirebaseFcmDataV1beta1MessageInsightPercents
90 */
91 public function getMessageInsightPercents()
92 {
93 return $this->messageInsightPercents;
94 }
95 /**
96 * @param GoogleFirebaseFcmDataV1beta1MessageOutcomePercents
97 */
98 public function setMessageOutcomePercents(GoogleFirebaseFcmDataV1beta1MessageOutcomePercents $messageOutcomePercents)
99 {
100 $this->messageOutcomePercents = $messageOutcomePercents;
101 }
102 /**
103 * @return GoogleFirebaseFcmDataV1beta1MessageOutcomePercents
104 */
105 public function getMessageOutcomePercents()
106 {
107 return $this->messageOutcomePercents;
108 }
109 /**
110 * @param GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents
111 */
112 public function setProxyNotificationInsightPercents(GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents $proxyNotificationInsightPercents)
113 {
114 $this->proxyNotificationInsightPercents = $proxyNotificationInsightPercents;
115 }
116 /**
117 * @return GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents
118 */
119 public function getProxyNotificationInsightPercents()
120 {
121 return $this->proxyNotificationInsightPercents;
122 }
123}
124
125// Adding a class alias for backwards compatibility with the previous class name.
126class_alias(GoogleFirebaseFcmDataV1beta1Data::class, 'Google_Service_Fcmdata_GoogleFirebaseFcmDataV1beta1Data');
Note: See TracBrowser for help on using the repository browser.