source: vendor/google/apiclient-services/src/Contentwarehouse/GoogleCloudContentwarehouseV1Action.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload project files

  • Property mode set to 100644
File size: 4.7 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\Contentwarehouse;
19
20class GoogleCloudContentwarehouseV1Action extends \Google\Model
21{
22 protected $accessControlType = GoogleCloudContentwarehouseV1AccessControlAction::class;
23 protected $accessControlDataType = '';
24 /**
25 * @var string
26 */
27 public $actionId;
28 protected $addToFolderType = GoogleCloudContentwarehouseV1AddToFolderAction::class;
29 protected $addToFolderDataType = '';
30 protected $dataUpdateType = GoogleCloudContentwarehouseV1DataUpdateAction::class;
31 protected $dataUpdateDataType = '';
32 protected $dataValidationType = GoogleCloudContentwarehouseV1DataValidationAction::class;
33 protected $dataValidationDataType = '';
34 protected $deleteDocumentActionType = GoogleCloudContentwarehouseV1DeleteDocumentAction::class;
35 protected $deleteDocumentActionDataType = '';
36 protected $publishToPubSubType = GoogleCloudContentwarehouseV1PublishAction::class;
37 protected $publishToPubSubDataType = '';
38 protected $removeFromFolderActionType = GoogleCloudContentwarehouseV1RemoveFromFolderAction::class;
39 protected $removeFromFolderActionDataType = '';
40
41 /**
42 * @param GoogleCloudContentwarehouseV1AccessControlAction
43 */
44 public function setAccessControl(GoogleCloudContentwarehouseV1AccessControlAction $accessControl)
45 {
46 $this->accessControl = $accessControl;
47 }
48 /**
49 * @return GoogleCloudContentwarehouseV1AccessControlAction
50 */
51 public function getAccessControl()
52 {
53 return $this->accessControl;
54 }
55 /**
56 * @param string
57 */
58 public function setActionId($actionId)
59 {
60 $this->actionId = $actionId;
61 }
62 /**
63 * @return string
64 */
65 public function getActionId()
66 {
67 return $this->actionId;
68 }
69 /**
70 * @param GoogleCloudContentwarehouseV1AddToFolderAction
71 */
72 public function setAddToFolder(GoogleCloudContentwarehouseV1AddToFolderAction $addToFolder)
73 {
74 $this->addToFolder = $addToFolder;
75 }
76 /**
77 * @return GoogleCloudContentwarehouseV1AddToFolderAction
78 */
79 public function getAddToFolder()
80 {
81 return $this->addToFolder;
82 }
83 /**
84 * @param GoogleCloudContentwarehouseV1DataUpdateAction
85 */
86 public function setDataUpdate(GoogleCloudContentwarehouseV1DataUpdateAction $dataUpdate)
87 {
88 $this->dataUpdate = $dataUpdate;
89 }
90 /**
91 * @return GoogleCloudContentwarehouseV1DataUpdateAction
92 */
93 public function getDataUpdate()
94 {
95 return $this->dataUpdate;
96 }
97 /**
98 * @param GoogleCloudContentwarehouseV1DataValidationAction
99 */
100 public function setDataValidation(GoogleCloudContentwarehouseV1DataValidationAction $dataValidation)
101 {
102 $this->dataValidation = $dataValidation;
103 }
104 /**
105 * @return GoogleCloudContentwarehouseV1DataValidationAction
106 */
107 public function getDataValidation()
108 {
109 return $this->dataValidation;
110 }
111 /**
112 * @param GoogleCloudContentwarehouseV1DeleteDocumentAction
113 */
114 public function setDeleteDocumentAction(GoogleCloudContentwarehouseV1DeleteDocumentAction $deleteDocumentAction)
115 {
116 $this->deleteDocumentAction = $deleteDocumentAction;
117 }
118 /**
119 * @return GoogleCloudContentwarehouseV1DeleteDocumentAction
120 */
121 public function getDeleteDocumentAction()
122 {
123 return $this->deleteDocumentAction;
124 }
125 /**
126 * @param GoogleCloudContentwarehouseV1PublishAction
127 */
128 public function setPublishToPubSub(GoogleCloudContentwarehouseV1PublishAction $publishToPubSub)
129 {
130 $this->publishToPubSub = $publishToPubSub;
131 }
132 /**
133 * @return GoogleCloudContentwarehouseV1PublishAction
134 */
135 public function getPublishToPubSub()
136 {
137 return $this->publishToPubSub;
138 }
139 /**
140 * @param GoogleCloudContentwarehouseV1RemoveFromFolderAction
141 */
142 public function setRemoveFromFolderAction(GoogleCloudContentwarehouseV1RemoveFromFolderAction $removeFromFolderAction)
143 {
144 $this->removeFromFolderAction = $removeFromFolderAction;
145 }
146 /**
147 * @return GoogleCloudContentwarehouseV1RemoveFromFolderAction
148 */
149 public function getRemoveFromFolderAction()
150 {
151 return $this->removeFromFolderAction;
152 }
153}
154
155// Adding a class alias for backwards compatibility with the previous class name.
156class_alias(GoogleCloudContentwarehouseV1Action::class, 'Google_Service_Contentwarehouse_GoogleCloudContentwarehouseV1Action');
Note: See TracBrowser for help on using the repository browser.