We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b1d7e0 commit def1d98Copy full SHA for def1d98
src/Datastream/RunStreamRequest.php
@@ -21,6 +21,10 @@ class RunStreamRequest extends \Google\Model
21
{
22
protected $cdcStrategyType = CdcStrategy::class;
23
protected $cdcStrategyDataType = '';
24
+ /**
25
+ * @var bool
26
+ */
27
+ public $force;
28
29
/**
30
* @param CdcStrategy
@@ -36,6 +40,20 @@ public function getCdcStrategy()
36
40
37
41
return $this->cdcStrategy;
38
42
}
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
39
57
58
59
// Adding a class alias for backwards compatibility with the previous class name.
0 commit comments