Skip to content

Commit bafbcf9

Browse files
1 parent 2e69adf commit bafbcf9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: src/Workflows/Workflow.php

+18
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ class Workflow extends \Google\Collection
8282
public $state;
8383
protected $stateErrorType = StateError::class;
8484
protected $stateErrorDataType = '';
85+
/**
86+
* @var string[]
87+
*/
88+
public $tags;
8589
/**
8690
* @var string
8791
*/
@@ -315,6 +319,20 @@ public function getStateError()
315319
{
316320
return $this->stateError;
317321
}
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+
}
318336
/**
319337
* @param string
320338
*/

0 commit comments

Comments
 (0)