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\Walletobjects;
|
---|
19 |
|
---|
20 | class AppLinkDataAppLinkInfo extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $appLogoImageType = Image::class;
|
---|
23 | protected $appLogoImageDataType = '';
|
---|
24 | protected $appTargetType = AppLinkDataAppLinkInfoAppTarget::class;
|
---|
25 | protected $appTargetDataType = '';
|
---|
26 | protected $descriptionType = LocalizedString::class;
|
---|
27 | protected $descriptionDataType = '';
|
---|
28 | protected $titleType = LocalizedString::class;
|
---|
29 | protected $titleDataType = '';
|
---|
30 |
|
---|
31 | /**
|
---|
32 | * @param Image
|
---|
33 | */
|
---|
34 | public function setAppLogoImage(Image $appLogoImage)
|
---|
35 | {
|
---|
36 | $this->appLogoImage = $appLogoImage;
|
---|
37 | }
|
---|
38 | /**
|
---|
39 | * @return Image
|
---|
40 | */
|
---|
41 | public function getAppLogoImage()
|
---|
42 | {
|
---|
43 | return $this->appLogoImage;
|
---|
44 | }
|
---|
45 | /**
|
---|
46 | * @param AppLinkDataAppLinkInfoAppTarget
|
---|
47 | */
|
---|
48 | public function setAppTarget(AppLinkDataAppLinkInfoAppTarget $appTarget)
|
---|
49 | {
|
---|
50 | $this->appTarget = $appTarget;
|
---|
51 | }
|
---|
52 | /**
|
---|
53 | * @return AppLinkDataAppLinkInfoAppTarget
|
---|
54 | */
|
---|
55 | public function getAppTarget()
|
---|
56 | {
|
---|
57 | return $this->appTarget;
|
---|
58 | }
|
---|
59 | /**
|
---|
60 | * @param LocalizedString
|
---|
61 | */
|
---|
62 | public function setDescription(LocalizedString $description)
|
---|
63 | {
|
---|
64 | $this->description = $description;
|
---|
65 | }
|
---|
66 | /**
|
---|
67 | * @return LocalizedString
|
---|
68 | */
|
---|
69 | public function getDescription()
|
---|
70 | {
|
---|
71 | return $this->description;
|
---|
72 | }
|
---|
73 | /**
|
---|
74 | * @param LocalizedString
|
---|
75 | */
|
---|
76 | public function setTitle(LocalizedString $title)
|
---|
77 | {
|
---|
78 | $this->title = $title;
|
---|
79 | }
|
---|
80 | /**
|
---|
81 | * @return LocalizedString
|
---|
82 | */
|
---|
83 | public function getTitle()
|
---|
84 | {
|
---|
85 | return $this->title;
|
---|
86 | }
|
---|
87 | }
|
---|
88 |
|
---|
89 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
90 | class_alias(AppLinkDataAppLinkInfo::class, 'Google_Service_Walletobjects_AppLinkDataAppLinkInfo');
|
---|