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\Cloudchannel;
|
---|
19 |
|
---|
20 | class GoogleCloudChannelV1PricePhase extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'priceTiers';
|
---|
23 | /**
|
---|
24 | * @var int
|
---|
25 | */
|
---|
26 | public $firstPeriod;
|
---|
27 | /**
|
---|
28 | * @var int
|
---|
29 | */
|
---|
30 | public $lastPeriod;
|
---|
31 | /**
|
---|
32 | * @var string
|
---|
33 | */
|
---|
34 | public $periodType;
|
---|
35 | protected $priceType = GoogleCloudChannelV1Price::class;
|
---|
36 | protected $priceDataType = '';
|
---|
37 | protected $priceTiersType = GoogleCloudChannelV1PriceTier::class;
|
---|
38 | protected $priceTiersDataType = 'array';
|
---|
39 |
|
---|
40 | /**
|
---|
41 | * @param int
|
---|
42 | */
|
---|
43 | public function setFirstPeriod($firstPeriod)
|
---|
44 | {
|
---|
45 | $this->firstPeriod = $firstPeriod;
|
---|
46 | }
|
---|
47 | /**
|
---|
48 | * @return int
|
---|
49 | */
|
---|
50 | public function getFirstPeriod()
|
---|
51 | {
|
---|
52 | return $this->firstPeriod;
|
---|
53 | }
|
---|
54 | /**
|
---|
55 | * @param int
|
---|
56 | */
|
---|
57 | public function setLastPeriod($lastPeriod)
|
---|
58 | {
|
---|
59 | $this->lastPeriod = $lastPeriod;
|
---|
60 | }
|
---|
61 | /**
|
---|
62 | * @return int
|
---|
63 | */
|
---|
64 | public function getLastPeriod()
|
---|
65 | {
|
---|
66 | return $this->lastPeriod;
|
---|
67 | }
|
---|
68 | /**
|
---|
69 | * @param string
|
---|
70 | */
|
---|
71 | public function setPeriodType($periodType)
|
---|
72 | {
|
---|
73 | $this->periodType = $periodType;
|
---|
74 | }
|
---|
75 | /**
|
---|
76 | * @return string
|
---|
77 | */
|
---|
78 | public function getPeriodType()
|
---|
79 | {
|
---|
80 | return $this->periodType;
|
---|
81 | }
|
---|
82 | /**
|
---|
83 | * @param GoogleCloudChannelV1Price
|
---|
84 | */
|
---|
85 | public function setPrice(GoogleCloudChannelV1Price $price)
|
---|
86 | {
|
---|
87 | $this->price = $price;
|
---|
88 | }
|
---|
89 | /**
|
---|
90 | * @return GoogleCloudChannelV1Price
|
---|
91 | */
|
---|
92 | public function getPrice()
|
---|
93 | {
|
---|
94 | return $this->price;
|
---|
95 | }
|
---|
96 | /**
|
---|
97 | * @param GoogleCloudChannelV1PriceTier[]
|
---|
98 | */
|
---|
99 | public function setPriceTiers($priceTiers)
|
---|
100 | {
|
---|
101 | $this->priceTiers = $priceTiers;
|
---|
102 | }
|
---|
103 | /**
|
---|
104 | * @return GoogleCloudChannelV1PriceTier[]
|
---|
105 | */
|
---|
106 | public function getPriceTiers()
|
---|
107 | {
|
---|
108 | return $this->priceTiers;
|
---|
109 | }
|
---|
110 | }
|
---|
111 |
|
---|
112 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
113 | class_alias(GoogleCloudChannelV1PricePhase::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1PricePhase');
|
---|