source: vendor/google/apiclient-services/src/Fcmdata/GoogleFirebaseFcmDataV1beta1MessageOutcomePercents.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: 3.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 GoogleFirebaseFcmDataV1beta1MessageOutcomePercents extends \Google\Model
21{
22 /**
23 * @var float
24 */
25 public $collapsed;
26 /**
27 * @var float
28 */
29 public $delivered;
30 /**
31 * @var float
32 */
33 public $droppedAppForceStopped;
34 /**
35 * @var float
36 */
37 public $droppedDeviceInactive;
38 /**
39 * @var float
40 */
41 public $droppedTooManyPendingMessages;
42 /**
43 * @var float
44 */
45 public $droppedTtlExpired;
46 /**
47 * @var float
48 */
49 public $pending;
50
51 /**
52 * @param float
53 */
54 public function setCollapsed($collapsed)
55 {
56 $this->collapsed = $collapsed;
57 }
58 /**
59 * @return float
60 */
61 public function getCollapsed()
62 {
63 return $this->collapsed;
64 }
65 /**
66 * @param float
67 */
68 public function setDelivered($delivered)
69 {
70 $this->delivered = $delivered;
71 }
72 /**
73 * @return float
74 */
75 public function getDelivered()
76 {
77 return $this->delivered;
78 }
79 /**
80 * @param float
81 */
82 public function setDroppedAppForceStopped($droppedAppForceStopped)
83 {
84 $this->droppedAppForceStopped = $droppedAppForceStopped;
85 }
86 /**
87 * @return float
88 */
89 public function getDroppedAppForceStopped()
90 {
91 return $this->droppedAppForceStopped;
92 }
93 /**
94 * @param float
95 */
96 public function setDroppedDeviceInactive($droppedDeviceInactive)
97 {
98 $this->droppedDeviceInactive = $droppedDeviceInactive;
99 }
100 /**
101 * @return float
102 */
103 public function getDroppedDeviceInactive()
104 {
105 return $this->droppedDeviceInactive;
106 }
107 /**
108 * @param float
109 */
110 public function setDroppedTooManyPendingMessages($droppedTooManyPendingMessages)
111 {
112 $this->droppedTooManyPendingMessages = $droppedTooManyPendingMessages;
113 }
114 /**
115 * @return float
116 */
117 public function getDroppedTooManyPendingMessages()
118 {
119 return $this->droppedTooManyPendingMessages;
120 }
121 /**
122 * @param float
123 */
124 public function setDroppedTtlExpired($droppedTtlExpired)
125 {
126 $this->droppedTtlExpired = $droppedTtlExpired;
127 }
128 /**
129 * @return float
130 */
131 public function getDroppedTtlExpired()
132 {
133 return $this->droppedTtlExpired;
134 }
135 /**
136 * @param float
137 */
138 public function setPending($pending)
139 {
140 $this->pending = $pending;
141 }
142 /**
143 * @return float
144 */
145 public function getPending()
146 {
147 return $this->pending;
148 }
149}
150
151// Adding a class alias for backwards compatibility with the previous class name.
152class_alias(GoogleFirebaseFcmDataV1beta1MessageOutcomePercents::class, 'Google_Service_Fcmdata_GoogleFirebaseFcmDataV1beta1MessageOutcomePercents');
Note: See TracBrowser for help on using the repository browser.