source: vendor/google/apiclient-services/src/Walletobjects/FlightCarrier.php

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

Upload project files

  • Property mode set to 100644
File size: 3.0 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\Walletobjects;
19
20class FlightCarrier extends \Google\Model
21{
22 protected $airlineAllianceLogoType = Image::class;
23 protected $airlineAllianceLogoDataType = '';
24 protected $airlineLogoType = Image::class;
25 protected $airlineLogoDataType = '';
26 protected $airlineNameType = LocalizedString::class;
27 protected $airlineNameDataType = '';
28 /**
29 * @var string
30 */
31 public $carrierIataCode;
32 /**
33 * @var string
34 */
35 public $carrierIcaoCode;
36 /**
37 * @var string
38 */
39 public $kind;
40 protected $wideAirlineLogoType = Image::class;
41 protected $wideAirlineLogoDataType = '';
42
43 /**
44 * @param Image
45 */
46 public function setAirlineAllianceLogo(Image $airlineAllianceLogo)
47 {
48 $this->airlineAllianceLogo = $airlineAllianceLogo;
49 }
50 /**
51 * @return Image
52 */
53 public function getAirlineAllianceLogo()
54 {
55 return $this->airlineAllianceLogo;
56 }
57 /**
58 * @param Image
59 */
60 public function setAirlineLogo(Image $airlineLogo)
61 {
62 $this->airlineLogo = $airlineLogo;
63 }
64 /**
65 * @return Image
66 */
67 public function getAirlineLogo()
68 {
69 return $this->airlineLogo;
70 }
71 /**
72 * @param LocalizedString
73 */
74 public function setAirlineName(LocalizedString $airlineName)
75 {
76 $this->airlineName = $airlineName;
77 }
78 /**
79 * @return LocalizedString
80 */
81 public function getAirlineName()
82 {
83 return $this->airlineName;
84 }
85 /**
86 * @param string
87 */
88 public function setCarrierIataCode($carrierIataCode)
89 {
90 $this->carrierIataCode = $carrierIataCode;
91 }
92 /**
93 * @return string
94 */
95 public function getCarrierIataCode()
96 {
97 return $this->carrierIataCode;
98 }
99 /**
100 * @param string
101 */
102 public function setCarrierIcaoCode($carrierIcaoCode)
103 {
104 $this->carrierIcaoCode = $carrierIcaoCode;
105 }
106 /**
107 * @return string
108 */
109 public function getCarrierIcaoCode()
110 {
111 return $this->carrierIcaoCode;
112 }
113 /**
114 * @param string
115 */
116 public function setKind($kind)
117 {
118 $this->kind = $kind;
119 }
120 /**
121 * @return string
122 */
123 public function getKind()
124 {
125 return $this->kind;
126 }
127 /**
128 * @param Image
129 */
130 public function setWideAirlineLogo(Image $wideAirlineLogo)
131 {
132 $this->wideAirlineLogo = $wideAirlineLogo;
133 }
134 /**
135 * @return Image
136 */
137 public function getWideAirlineLogo()
138 {
139 return $this->wideAirlineLogo;
140 }
141}
142
143// Adding a class alias for backwards compatibility with the previous class name.
144class_alias(FlightCarrier::class, 'Google_Service_Walletobjects_FlightCarrier');
Note: See TracBrowser for help on using the repository browser.