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\DataCatalog;
19
20class GoogleCloudDatacatalogV1TagField extends \Google\Model
21{
22  /**
23   * @var bool
24   */
25  public $boolValue;
26  /**
27   * @var string
28   */
29  public $displayName;
30  public $doubleValue;
31  protected $enumValueType = GoogleCloudDatacatalogV1TagFieldEnumValue::class;
32  protected $enumValueDataType = '';
33  /**
34   * @var int
35   */
36  public $order;
37  /**
38   * @var string
39   */
40  public $richtextValue;
41  /**
42   * @var string
43   */
44  public $stringValue;
45  /**
46   * @var string
47   */
48  public $timestampValue;
49
50  /**
51   * @param bool
52   */
53  public function setBoolValue($boolValue)
54  {
55    $this->boolValue = $boolValue;
56  }
57  /**
58   * @return bool
59   */
60  public function getBoolValue()
61  {
62    return $this->boolValue;
63  }
64  /**
65   * @param string
66   */
67  public function setDisplayName($displayName)
68  {
69    $this->displayName = $displayName;
70  }
71  /**
72   * @return string
73   */
74  public function getDisplayName()
75  {
76    return $this->displayName;
77  }
78  public function setDoubleValue($doubleValue)
79  {
80    $this->doubleValue = $doubleValue;
81  }
82  public function getDoubleValue()
83  {
84    return $this->doubleValue;
85  }
86  /**
87   * @param GoogleCloudDatacatalogV1TagFieldEnumValue
88   */
89  public function setEnumValue(GoogleCloudDatacatalogV1TagFieldEnumValue $enumValue)
90  {
91    $this->enumValue = $enumValue;
92  }
93  /**
94   * @return GoogleCloudDatacatalogV1TagFieldEnumValue
95   */
96  public function getEnumValue()
97  {
98    return $this->enumValue;
99  }
100  /**
101   * @param int
102   */
103  public function setOrder($order)
104  {
105    $this->order = $order;
106  }
107  /**
108   * @return int
109   */
110  public function getOrder()
111  {
112    return $this->order;
113  }
114  /**
115   * @param string
116   */
117  public function setRichtextValue($richtextValue)
118  {
119    $this->richtextValue = $richtextValue;
120  }
121  /**
122   * @return string
123   */
124  public function getRichtextValue()
125  {
126    return $this->richtextValue;
127  }
128  /**
129   * @param string
130   */
131  public function setStringValue($stringValue)
132  {
133    $this->stringValue = $stringValue;
134  }
135  /**
136   * @return string
137   */
138  public function getStringValue()
139  {
140    return $this->stringValue;
141  }
142  /**
143   * @param string
144   */
145  public function setTimestampValue($timestampValue)
146  {
147    $this->timestampValue = $timestampValue;
148  }
149  /**
150   * @return string
151   */
152  public function getTimestampValue()
153  {
154    return $this->timestampValue;
155  }
156}
157
158// Adding a class alias for backwards compatibility with the previous class name.
159class_alias(GoogleCloudDatacatalogV1TagField::class, 'Google_Service_DataCatalog_GoogleCloudDatacatalogV1TagField');
160