source: vendor/google/apiclient-services/src/Cloudchannel/GoogleCloudChannelV1alpha1RenewalSettings.php@ e3d4e0a

Last change on this file since e3d4e0a 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\Cloudchannel;
19
20class GoogleCloudChannelV1alpha1RenewalSettings extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $disableCommitment;
26 /**
27 * @var bool
28 */
29 public $enableRenewal;
30 protected $paymentCycleType = GoogleCloudChannelV1alpha1Period::class;
31 protected $paymentCycleDataType = '';
32 /**
33 * @var string
34 */
35 public $paymentOption;
36 /**
37 * @var string
38 */
39 public $paymentPlan;
40 /**
41 * @var bool
42 */
43 public $resizeUnitCount;
44 /**
45 * @var string
46 */
47 public $scheduledRenewalOffer;
48
49 /**
50 * @param bool
51 */
52 public function setDisableCommitment($disableCommitment)
53 {
54 $this->disableCommitment = $disableCommitment;
55 }
56 /**
57 * @return bool
58 */
59 public function getDisableCommitment()
60 {
61 return $this->disableCommitment;
62 }
63 /**
64 * @param bool
65 */
66 public function setEnableRenewal($enableRenewal)
67 {
68 $this->enableRenewal = $enableRenewal;
69 }
70 /**
71 * @return bool
72 */
73 public function getEnableRenewal()
74 {
75 return $this->enableRenewal;
76 }
77 /**
78 * @param GoogleCloudChannelV1alpha1Period
79 */
80 public function setPaymentCycle(GoogleCloudChannelV1alpha1Period $paymentCycle)
81 {
82 $this->paymentCycle = $paymentCycle;
83 }
84 /**
85 * @return GoogleCloudChannelV1alpha1Period
86 */
87 public function getPaymentCycle()
88 {
89 return $this->paymentCycle;
90 }
91 /**
92 * @param string
93 */
94 public function setPaymentOption($paymentOption)
95 {
96 $this->paymentOption = $paymentOption;
97 }
98 /**
99 * @return string
100 */
101 public function getPaymentOption()
102 {
103 return $this->paymentOption;
104 }
105 /**
106 * @param string
107 */
108 public function setPaymentPlan($paymentPlan)
109 {
110 $this->paymentPlan = $paymentPlan;
111 }
112 /**
113 * @return string
114 */
115 public function getPaymentPlan()
116 {
117 return $this->paymentPlan;
118 }
119 /**
120 * @param bool
121 */
122 public function setResizeUnitCount($resizeUnitCount)
123 {
124 $this->resizeUnitCount = $resizeUnitCount;
125 }
126 /**
127 * @return bool
128 */
129 public function getResizeUnitCount()
130 {
131 return $this->resizeUnitCount;
132 }
133 /**
134 * @param string
135 */
136 public function setScheduledRenewalOffer($scheduledRenewalOffer)
137 {
138 $this->scheduledRenewalOffer = $scheduledRenewalOffer;
139 }
140 /**
141 * @return string
142 */
143 public function getScheduledRenewalOffer()
144 {
145 return $this->scheduledRenewalOffer;
146 }
147}
148
149// Adding a class alias for backwards compatibility with the previous class name.
150class_alias(GoogleCloudChannelV1alpha1RenewalSettings::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1alpha1RenewalSettings');
Note: See TracBrowser for help on using the repository browser.