source: vendor/google/apiclient-services/src/Cloudchannel/GoogleCloudChannelV1ReportValue.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: 2.8 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 GoogleCloudChannelV1ReportValue extends \Google\Model
21{
22 protected $dateTimeValueType = GoogleTypeDateTime::class;
23 protected $dateTimeValueDataType = '';
24 protected $dateValueType = GoogleTypeDate::class;
25 protected $dateValueDataType = '';
26 protected $decimalValueType = GoogleTypeDecimal::class;
27 protected $decimalValueDataType = '';
28 /**
29 * @var string
30 */
31 public $intValue;
32 protected $moneyValueType = GoogleTypeMoney::class;
33 protected $moneyValueDataType = '';
34 /**
35 * @var string
36 */
37 public $stringValue;
38
39 /**
40 * @param GoogleTypeDateTime
41 */
42 public function setDateTimeValue(GoogleTypeDateTime $dateTimeValue)
43 {
44 $this->dateTimeValue = $dateTimeValue;
45 }
46 /**
47 * @return GoogleTypeDateTime
48 */
49 public function getDateTimeValue()
50 {
51 return $this->dateTimeValue;
52 }
53 /**
54 * @param GoogleTypeDate
55 */
56 public function setDateValue(GoogleTypeDate $dateValue)
57 {
58 $this->dateValue = $dateValue;
59 }
60 /**
61 * @return GoogleTypeDate
62 */
63 public function getDateValue()
64 {
65 return $this->dateValue;
66 }
67 /**
68 * @param GoogleTypeDecimal
69 */
70 public function setDecimalValue(GoogleTypeDecimal $decimalValue)
71 {
72 $this->decimalValue = $decimalValue;
73 }
74 /**
75 * @return GoogleTypeDecimal
76 */
77 public function getDecimalValue()
78 {
79 return $this->decimalValue;
80 }
81 /**
82 * @param string
83 */
84 public function setIntValue($intValue)
85 {
86 $this->intValue = $intValue;
87 }
88 /**
89 * @return string
90 */
91 public function getIntValue()
92 {
93 return $this->intValue;
94 }
95 /**
96 * @param GoogleTypeMoney
97 */
98 public function setMoneyValue(GoogleTypeMoney $moneyValue)
99 {
100 $this->moneyValue = $moneyValue;
101 }
102 /**
103 * @return GoogleTypeMoney
104 */
105 public function getMoneyValue()
106 {
107 return $this->moneyValue;
108 }
109 /**
110 * @param string
111 */
112 public function setStringValue($stringValue)
113 {
114 $this->stringValue = $stringValue;
115 }
116 /**
117 * @return string
118 */
119 public function getStringValue()
120 {
121 return $this->stringValue;
122 }
123}
124
125// Adding a class alias for backwards compatibility with the previous class name.
126class_alias(GoogleCloudChannelV1ReportValue::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1ReportValue');
Note: See TracBrowser for help on using the repository browser.