Skip to content

Commit def1d98

Browse files
1 parent 6b1d7e0 commit def1d98

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Datastream/RunStreamRequest.php

+18
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class RunStreamRequest extends \Google\Model
2121
{
2222
protected $cdcStrategyType = CdcStrategy::class;
2323
protected $cdcStrategyDataType = '';
24+
/**
25+
* @var bool
26+
*/
27+
public $force;
2428

2529
/**
2630
* @param CdcStrategy
@@ -36,6 +40,20 @@ public function getCdcStrategy()
3640
{
3741
return $this->cdcStrategy;
3842
}
43+
/**
44+
* @param bool
45+
*/
46+
public function setForce($force)
47+
{
48+
$this->force = $force;
49+
}
50+
/**
51+
* @return bool
52+
*/
53+
public function getForce()
54+
{
55+
return $this->force;
56+
}
3957
}
4058

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

0 commit comments

Comments
 (0)