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 GoogleCloudDatacatalogV1beta1TagField extends \Google\Model
21{
22  public $boolValue;
23  public $displayName;
24  public $doubleValue;
25  protected $enumValueType = GoogleCloudDatacatalogV1beta1TagFieldEnumValue::class;
26  protected $enumValueDataType = '';
27  public $order;
28  public $stringValue;
29  public $timestampValue;
30
31  public function setBoolValue($boolValue)
32  {
33    $this->boolValue = $boolValue;
34  }
35  public function getBoolValue()
36  {
37    return $this->boolValue;
38  }
39  public function setDisplayName($displayName)
40  {
41    $this->displayName = $displayName;
42  }
43  public function getDisplayName()
44  {
45    return $this->displayName;
46  }
47  public function setDoubleValue($doubleValue)
48  {
49    $this->doubleValue = $doubleValue;
50  }
51  public function getDoubleValue()
52  {
53    return $this->doubleValue;
54  }
55  /**
56   * @param GoogleCloudDatacatalogV1beta1TagFieldEnumValue
57   */
58  public function setEnumValue(GoogleCloudDatacatalogV1beta1TagFieldEnumValue $enumValue)
59  {
60    $this->enumValue = $enumValue;
61  }
62  /**
63   * @return GoogleCloudDatacatalogV1beta1TagFieldEnumValue
64   */
65  public function getEnumValue()
66  {
67    return $this->enumValue;
68  }
69  public function setOrder($order)
70  {
71    $this->order = $order;
72  }
73  public function getOrder()
74  {
75    return $this->order;
76  }
77  public function setStringValue($stringValue)
78  {
79    $this->stringValue = $stringValue;
80  }
81  public function getStringValue()
82  {
83    return $this->stringValue;
84  }
85  public function setTimestampValue($timestampValue)
86  {
87    $this->timestampValue = $timestampValue;
88  }
89  public function getTimestampValue()
90  {
91    return $this->timestampValue;
92  }
93}
94
95// Adding a class alias for backwards compatibility with the previous class name.
96class_alias(GoogleCloudDatacatalogV1beta1TagField::class, 'Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagField');
97