source: vendor/google/apiclient-services/src/CloudSearch/LabelUpdate.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.0 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\CloudSearch;
19
20class LabelUpdate extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $canonicalName;
26 protected $labelCreatedType = LabelCreated::class;
27 protected $labelCreatedDataType = '';
28 protected $labelDeletedType = LabelDeleted::class;
29 protected $labelDeletedDataType = '';
30 /**
31 * @var string
32 */
33 public $labelId;
34 protected $labelRenamedType = LabelRenamed::class;
35 protected $labelRenamedDataType = '';
36 protected $labelUpdatedType = LabelUpdated::class;
37 protected $labelUpdatedDataType = '';
38 /**
39 * @var string
40 */
41 public $syncId;
42
43 /**
44 * @param string
45 */
46 public function setCanonicalName($canonicalName)
47 {
48 $this->canonicalName = $canonicalName;
49 }
50 /**
51 * @return string
52 */
53 public function getCanonicalName()
54 {
55 return $this->canonicalName;
56 }
57 /**
58 * @param LabelCreated
59 */
60 public function setLabelCreated(LabelCreated $labelCreated)
61 {
62 $this->labelCreated = $labelCreated;
63 }
64 /**
65 * @return LabelCreated
66 */
67 public function getLabelCreated()
68 {
69 return $this->labelCreated;
70 }
71 /**
72 * @param LabelDeleted
73 */
74 public function setLabelDeleted(LabelDeleted $labelDeleted)
75 {
76 $this->labelDeleted = $labelDeleted;
77 }
78 /**
79 * @return LabelDeleted
80 */
81 public function getLabelDeleted()
82 {
83 return $this->labelDeleted;
84 }
85 /**
86 * @param string
87 */
88 public function setLabelId($labelId)
89 {
90 $this->labelId = $labelId;
91 }
92 /**
93 * @return string
94 */
95 public function getLabelId()
96 {
97 return $this->labelId;
98 }
99 /**
100 * @param LabelRenamed
101 */
102 public function setLabelRenamed(LabelRenamed $labelRenamed)
103 {
104 $this->labelRenamed = $labelRenamed;
105 }
106 /**
107 * @return LabelRenamed
108 */
109 public function getLabelRenamed()
110 {
111 return $this->labelRenamed;
112 }
113 /**
114 * @param LabelUpdated
115 */
116 public function setLabelUpdated(LabelUpdated $labelUpdated)
117 {
118 $this->labelUpdated = $labelUpdated;
119 }
120 /**
121 * @return LabelUpdated
122 */
123 public function getLabelUpdated()
124 {
125 return $this->labelUpdated;
126 }
127 /**
128 * @param string
129 */
130 public function setSyncId($syncId)
131 {
132 $this->syncId = $syncId;
133 }
134 /**
135 * @return string
136 */
137 public function getSyncId()
138 {
139 return $this->syncId;
140 }
141}
142
143// Adding a class alias for backwards compatibility with the previous class name.
144class_alias(LabelUpdate::class, 'Google_Service_CloudSearch_LabelUpdate');
Note: See TracBrowser for help on using the repository browser.