[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\CloudSearch;
|
---|
| 19 |
|
---|
| 20 | class AppsDynamiteSharedTasksAnnotationData extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $assigneeChangeType = AppsDynamiteSharedTasksAnnotationDataAssigneeChange::class;
|
---|
| 23 | protected $assigneeChangeDataType = '';
|
---|
| 24 | protected $completionChangeType = AppsDynamiteSharedTasksAnnotationDataCompletionChange::class;
|
---|
| 25 | protected $completionChangeDataType = '';
|
---|
| 26 | protected $creationType = AppsDynamiteSharedTasksAnnotationDataCreation::class;
|
---|
| 27 | protected $creationDataType = '';
|
---|
| 28 | protected $deletionChangeType = AppsDynamiteSharedTasksAnnotationDataDeletionChange::class;
|
---|
| 29 | protected $deletionChangeDataType = '';
|
---|
| 30 | /**
|
---|
| 31 | * @var string
|
---|
| 32 | */
|
---|
| 33 | public $taskId;
|
---|
| 34 | protected $taskPropertiesType = AppsDynamiteSharedTasksAnnotationDataTaskProperties::class;
|
---|
| 35 | protected $taskPropertiesDataType = '';
|
---|
| 36 | protected $userDefinedMessageType = AppsDynamiteSharedTasksAnnotationDataUserDefinedMessage::class;
|
---|
| 37 | protected $userDefinedMessageDataType = '';
|
---|
| 38 |
|
---|
| 39 | /**
|
---|
| 40 | * @param AppsDynamiteSharedTasksAnnotationDataAssigneeChange
|
---|
| 41 | */
|
---|
| 42 | public function setAssigneeChange(AppsDynamiteSharedTasksAnnotationDataAssigneeChange $assigneeChange)
|
---|
| 43 | {
|
---|
| 44 | $this->assigneeChange = $assigneeChange;
|
---|
| 45 | }
|
---|
| 46 | /**
|
---|
| 47 | * @return AppsDynamiteSharedTasksAnnotationDataAssigneeChange
|
---|
| 48 | */
|
---|
| 49 | public function getAssigneeChange()
|
---|
| 50 | {
|
---|
| 51 | return $this->assigneeChange;
|
---|
| 52 | }
|
---|
| 53 | /**
|
---|
| 54 | * @param AppsDynamiteSharedTasksAnnotationDataCompletionChange
|
---|
| 55 | */
|
---|
| 56 | public function setCompletionChange(AppsDynamiteSharedTasksAnnotationDataCompletionChange $completionChange)
|
---|
| 57 | {
|
---|
| 58 | $this->completionChange = $completionChange;
|
---|
| 59 | }
|
---|
| 60 | /**
|
---|
| 61 | * @return AppsDynamiteSharedTasksAnnotationDataCompletionChange
|
---|
| 62 | */
|
---|
| 63 | public function getCompletionChange()
|
---|
| 64 | {
|
---|
| 65 | return $this->completionChange;
|
---|
| 66 | }
|
---|
| 67 | /**
|
---|
| 68 | * @param AppsDynamiteSharedTasksAnnotationDataCreation
|
---|
| 69 | */
|
---|
| 70 | public function setCreation(AppsDynamiteSharedTasksAnnotationDataCreation $creation)
|
---|
| 71 | {
|
---|
| 72 | $this->creation = $creation;
|
---|
| 73 | }
|
---|
| 74 | /**
|
---|
| 75 | * @return AppsDynamiteSharedTasksAnnotationDataCreation
|
---|
| 76 | */
|
---|
| 77 | public function getCreation()
|
---|
| 78 | {
|
---|
| 79 | return $this->creation;
|
---|
| 80 | }
|
---|
| 81 | /**
|
---|
| 82 | * @param AppsDynamiteSharedTasksAnnotationDataDeletionChange
|
---|
| 83 | */
|
---|
| 84 | public function setDeletionChange(AppsDynamiteSharedTasksAnnotationDataDeletionChange $deletionChange)
|
---|
| 85 | {
|
---|
| 86 | $this->deletionChange = $deletionChange;
|
---|
| 87 | }
|
---|
| 88 | /**
|
---|
| 89 | * @return AppsDynamiteSharedTasksAnnotationDataDeletionChange
|
---|
| 90 | */
|
---|
| 91 | public function getDeletionChange()
|
---|
| 92 | {
|
---|
| 93 | return $this->deletionChange;
|
---|
| 94 | }
|
---|
| 95 | /**
|
---|
| 96 | * @param string
|
---|
| 97 | */
|
---|
| 98 | public function setTaskId($taskId)
|
---|
| 99 | {
|
---|
| 100 | $this->taskId = $taskId;
|
---|
| 101 | }
|
---|
| 102 | /**
|
---|
| 103 | * @return string
|
---|
| 104 | */
|
---|
| 105 | public function getTaskId()
|
---|
| 106 | {
|
---|
| 107 | return $this->taskId;
|
---|
| 108 | }
|
---|
| 109 | /**
|
---|
| 110 | * @param AppsDynamiteSharedTasksAnnotationDataTaskProperties
|
---|
| 111 | */
|
---|
| 112 | public function setTaskProperties(AppsDynamiteSharedTasksAnnotationDataTaskProperties $taskProperties)
|
---|
| 113 | {
|
---|
| 114 | $this->taskProperties = $taskProperties;
|
---|
| 115 | }
|
---|
| 116 | /**
|
---|
| 117 | * @return AppsDynamiteSharedTasksAnnotationDataTaskProperties
|
---|
| 118 | */
|
---|
| 119 | public function getTaskProperties()
|
---|
| 120 | {
|
---|
| 121 | return $this->taskProperties;
|
---|
| 122 | }
|
---|
| 123 | /**
|
---|
| 124 | * @param AppsDynamiteSharedTasksAnnotationDataUserDefinedMessage
|
---|
| 125 | */
|
---|
| 126 | public function setUserDefinedMessage(AppsDynamiteSharedTasksAnnotationDataUserDefinedMessage $userDefinedMessage)
|
---|
| 127 | {
|
---|
| 128 | $this->userDefinedMessage = $userDefinedMessage;
|
---|
| 129 | }
|
---|
| 130 | /**
|
---|
| 131 | * @return AppsDynamiteSharedTasksAnnotationDataUserDefinedMessage
|
---|
| 132 | */
|
---|
| 133 | public function getUserDefinedMessage()
|
---|
| 134 | {
|
---|
| 135 | return $this->userDefinedMessage;
|
---|
| 136 | }
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 140 | class_alias(AppsDynamiteSharedTasksAnnotationData::class, 'Google_Service_CloudSearch_AppsDynamiteSharedTasksAnnotationData');
|
---|