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\DLP;
19
20class GooglePrivacyDlpV2Value extends \Google\Model
21{
22  /**
23   * @var bool
24   */
25  public $booleanValue;
26  protected $dateValueType = GoogleTypeDate::class;
27  protected $dateValueDataType = '';
28  /**
29   * @var string
30   */
31  public $dayOfWeekValue;
32  public $floatValue;
33  /**
34   * @var string
35   */
36  public $integerValue;
37  /**
38   * @var string
39   */
40  public $stringValue;
41  protected $timeValueType = GoogleTypeTimeOfDay::class;
42  protected $timeValueDataType = '';
43  /**
44   * @var string
45   */
46  public $timestampValue;
47
48  /**
49   * @param bool
50   */
51  public function setBooleanValue($booleanValue)
52  {
53    $this->booleanValue = $booleanValue;
54  }
55  /**
56   * @return bool
57   */
58  public function getBooleanValue()
59  {
60    return $this->booleanValue;
61  }
62  /**
63   * @param GoogleTypeDate
64   */
65  public function setDateValue(GoogleTypeDate $dateValue)
66  {
67    $this->dateValue = $dateValue;
68  }
69  /**
70   * @return GoogleTypeDate
71   */
72  public function getDateValue()
73  {
74    return $this->dateValue;
75  }
76  /**
77   * @param string
78   */
79  public function setDayOfWeekValue($dayOfWeekValue)
80  {
81    $this->dayOfWeekValue = $dayOfWeekValue;
82  }
83  /**
84   * @return string
85   */
86  public function getDayOfWeekValue()
87  {
88    return $this->dayOfWeekValue;
89  }
90  public function setFloatValue($floatValue)
91  {
92    $this->floatValue = $floatValue;
93  }
94  public function getFloatValue()
95  {
96    return $this->floatValue;
97  }
98  /**
99   * @param string
100   */
101  public function setIntegerValue($integerValue)
102  {
103    $this->integerValue = $integerValue;
104  }
105  /**
106   * @return string
107   */
108  public function getIntegerValue()
109  {
110    return $this->integerValue;
111  }
112  /**
113   * @param string
114   */
115  public function setStringValue($stringValue)
116  {
117    $this->stringValue = $stringValue;
118  }
119  /**
120   * @return string
121   */
122  public function getStringValue()
123  {
124    return $this->stringValue;
125  }
126  /**
127   * @param GoogleTypeTimeOfDay
128   */
129  public function setTimeValue(GoogleTypeTimeOfDay $timeValue)
130  {
131    $this->timeValue = $timeValue;
132  }
133  /**
134   * @return GoogleTypeTimeOfDay
135   */
136  public function getTimeValue()
137  {
138    return $this->timeValue;
139  }
140  /**
141   * @param string
142   */
143  public function setTimestampValue($timestampValue)
144  {
145    $this->timestampValue = $timestampValue;
146  }
147  /**
148   * @return string
149   */
150  public function getTimestampValue()
151  {
152    return $this->timestampValue;
153  }
154}
155
156// Adding a class alias for backwards compatibility with the previous class name.
157class_alias(GooglePrivacyDlpV2Value::class, 'Google_Service_DLP_GooglePrivacyDlpV2Value');
158