Skip to content

Commit

Permalink
Regenerate workflows client (#6017)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Dec 14, 2024
1 parent 2e69adf commit bafbcf9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Workflows/Workflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ class Workflow extends \Google\Collection
public $state;
protected $stateErrorType = StateError::class;
protected $stateErrorDataType = '';
/**
* @var string[]
*/
public $tags;
/**
* @var string
*/
Expand Down Expand Up @@ -315,6 +319,20 @@ public function getStateError()
{
return $this->stateError;
}
/**
* @param string[]
*/
public function setTags($tags)
{
$this->tags = $tags;
}
/**
* @return string[]
*/
public function getTags()
{
return $this->tags;
}
/**
* @param string
*/
Expand Down

0 comments on commit bafbcf9

Please sign in to comment.