source: vendor/google/apiclient-services/src/Integrations/GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse.php

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

Upload project files

  • Property mode set to 100644
File size: 2.9 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\Integrations;
19
20class GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse extends \Google\Collection
21{
22 protected $collection_key = 'parameterEntries';
23 protected $eventParametersType = EnterpriseCrmFrontendsEventbusProtoEventParameters::class;
24 protected $eventParametersDataType = '';
25 /**
26 * @var bool
27 */
28 public $executionFailed;
29 /**
30 * @var string
31 */
32 public $executionId;
33 /**
34 * @var array[]
35 */
36 public $outputParameters;
37 protected $parameterEntriesType = EnterpriseCrmFrontendsEventbusProtoParameterEntry::class;
38 protected $parameterEntriesDataType = 'array';
39
40 /**
41 * @param EnterpriseCrmFrontendsEventbusProtoEventParameters
42 */
43 public function setEventParameters(EnterpriseCrmFrontendsEventbusProtoEventParameters $eventParameters)
44 {
45 $this->eventParameters = $eventParameters;
46 }
47 /**
48 * @return EnterpriseCrmFrontendsEventbusProtoEventParameters
49 */
50 public function getEventParameters()
51 {
52 return $this->eventParameters;
53 }
54 /**
55 * @param bool
56 */
57 public function setExecutionFailed($executionFailed)
58 {
59 $this->executionFailed = $executionFailed;
60 }
61 /**
62 * @return bool
63 */
64 public function getExecutionFailed()
65 {
66 return $this->executionFailed;
67 }
68 /**
69 * @param string
70 */
71 public function setExecutionId($executionId)
72 {
73 $this->executionId = $executionId;
74 }
75 /**
76 * @return string
77 */
78 public function getExecutionId()
79 {
80 return $this->executionId;
81 }
82 /**
83 * @param array[]
84 */
85 public function setOutputParameters($outputParameters)
86 {
87 $this->outputParameters = $outputParameters;
88 }
89 /**
90 * @return array[]
91 */
92 public function getOutputParameters()
93 {
94 return $this->outputParameters;
95 }
96 /**
97 * @param EnterpriseCrmFrontendsEventbusProtoParameterEntry[]
98 */
99 public function setParameterEntries($parameterEntries)
100 {
101 $this->parameterEntries = $parameterEntries;
102 }
103 /**
104 * @return EnterpriseCrmFrontendsEventbusProtoParameterEntry[]
105 */
106 public function getParameterEntries()
107 {
108 return $this->parameterEntries;
109 }
110}
111
112// Adding a class alias for backwards compatibility with the previous class name.
113class_alias(GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse');
Note: See TracBrowser for help on using the repository browser.