We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e69adf commit bafbcf9Copy full SHA for bafbcf9
src/Workflows/Workflow.php
@@ -82,6 +82,10 @@ class Workflow extends \Google\Collection
82
public $state;
83
protected $stateErrorType = StateError::class;
84
protected $stateErrorDataType = '';
85
+ /**
86
+ * @var string[]
87
+ */
88
+ public $tags;
89
/**
90
* @var string
91
*/
@@ -315,6 +319,20 @@ public function getStateError()
315
319
{
316
320
return $this->stateError;
317
321
}
322
323
+ * @param string[]
324
325
+ public function setTags($tags)
326
+ {
327
+ $this->tags = $tags;
328
+ }
329
330
+ * @return string[]
331
332
+ public function getTags()
333
334
+ return $this->tags;
335
318
336
337
* @param string
338
0 commit comments