Skip to content

Commit ed24c09

Browse files
1 parent 8200cb3 commit ed24c09

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

src/Integrations/GoogleCloudIntegrationsV1alphaReplayExecutionRequest.php

+52
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,49 @@
1919

2020
class GoogleCloudIntegrationsV1alphaReplayExecutionRequest extends \Google\Model
2121
{
22+
protected $modifiedParametersType = GoogleCloudIntegrationsV1alphaValueType::class;
23+
protected $modifiedParametersDataType = 'map';
24+
/**
25+
* @var string
26+
*/
27+
public $replayMode;
2228
/**
2329
* @var string
2430
*/
2531
public $replayReason;
32+
/**
33+
* @var string
34+
*/
35+
public $updateMask;
2636

37+
/**
38+
* @param GoogleCloudIntegrationsV1alphaValueType[]
39+
*/
40+
public function setModifiedParameters($modifiedParameters)
41+
{
42+
$this->modifiedParameters = $modifiedParameters;
43+
}
44+
/**
45+
* @return GoogleCloudIntegrationsV1alphaValueType[]
46+
*/
47+
public function getModifiedParameters()
48+
{
49+
return $this->modifiedParameters;
50+
}
51+
/**
52+
* @param string
53+
*/
54+
public function setReplayMode($replayMode)
55+
{
56+
$this->replayMode = $replayMode;
57+
}
58+
/**
59+
* @return string
60+
*/
61+
public function getReplayMode()
62+
{
63+
return $this->replayMode;
64+
}
2765
/**
2866
* @param string
2967
*/
@@ -38,6 +76,20 @@ public function getReplayReason()
3876
{
3977
return $this->replayReason;
4078
}
79+
/**
80+
* @param string
81+
*/
82+
public function setUpdateMask($updateMask)
83+
{
84+
$this->updateMask = $updateMask;
85+
}
86+
/**
87+
* @return string
88+
*/
89+
public function getUpdateMask()
90+
{
91+
return $this->updateMask;
92+
}
4193
}
4294

4395
// Adding a class alias for backwards compatibility with the previous class name.

0 commit comments

Comments
 (0)