[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\Fcmdata;
|
---|
| 19 |
|
---|
| 20 | class GoogleFirebaseFcmDataV1beta1AndroidDeliveryData extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | /**
|
---|
| 23 | * @var string
|
---|
| 24 | */
|
---|
| 25 | public $analyticsLabel;
|
---|
| 26 | /**
|
---|
| 27 | * @var string
|
---|
| 28 | */
|
---|
| 29 | public $appId;
|
---|
| 30 | protected $dataType = GoogleFirebaseFcmDataV1beta1Data::class;
|
---|
| 31 | protected $dataDataType = '';
|
---|
| 32 | protected $dateType = GoogleTypeDate::class;
|
---|
| 33 | protected $dateDataType = '';
|
---|
| 34 |
|
---|
| 35 | /**
|
---|
| 36 | * @param string
|
---|
| 37 | */
|
---|
| 38 | public function setAnalyticsLabel($analyticsLabel)
|
---|
| 39 | {
|
---|
| 40 | $this->analyticsLabel = $analyticsLabel;
|
---|
| 41 | }
|
---|
| 42 | /**
|
---|
| 43 | * @return string
|
---|
| 44 | */
|
---|
| 45 | public function getAnalyticsLabel()
|
---|
| 46 | {
|
---|
| 47 | return $this->analyticsLabel;
|
---|
| 48 | }
|
---|
| 49 | /**
|
---|
| 50 | * @param string
|
---|
| 51 | */
|
---|
| 52 | public function setAppId($appId)
|
---|
| 53 | {
|
---|
| 54 | $this->appId = $appId;
|
---|
| 55 | }
|
---|
| 56 | /**
|
---|
| 57 | * @return string
|
---|
| 58 | */
|
---|
| 59 | public function getAppId()
|
---|
| 60 | {
|
---|
| 61 | return $this->appId;
|
---|
| 62 | }
|
---|
| 63 | /**
|
---|
| 64 | * @param GoogleFirebaseFcmDataV1beta1Data
|
---|
| 65 | */
|
---|
| 66 | public function setData(GoogleFirebaseFcmDataV1beta1Data $data)
|
---|
| 67 | {
|
---|
| 68 | $this->data = $data;
|
---|
| 69 | }
|
---|
| 70 | /**
|
---|
| 71 | * @return GoogleFirebaseFcmDataV1beta1Data
|
---|
| 72 | */
|
---|
| 73 | public function getData()
|
---|
| 74 | {
|
---|
| 75 | return $this->data;
|
---|
| 76 | }
|
---|
| 77 | /**
|
---|
| 78 | * @param GoogleTypeDate
|
---|
| 79 | */
|
---|
| 80 | public function setDate(GoogleTypeDate $date)
|
---|
| 81 | {
|
---|
| 82 | $this->date = $date;
|
---|
| 83 | }
|
---|
| 84 | /**
|
---|
| 85 | * @return GoogleTypeDate
|
---|
| 86 | */
|
---|
| 87 | public function getDate()
|
---|
| 88 | {
|
---|
| 89 | return $this->date;
|
---|
| 90 | }
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 94 | class_alias(GoogleFirebaseFcmDataV1beta1AndroidDeliveryData::class, 'Google_Service_Fcmdata_GoogleFirebaseFcmDataV1beta1AndroidDeliveryData');
|
---|