Skip to content

Commit

Permalink
Regenerate pubsub client (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Mar 13, 2022
1 parent d833072 commit ce8e34d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/Pubsub/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ class Schema extends \Google\Model
* @var string
*/
public $name;
/**
* @var string
*/
public $revisionCreateTime;
/**
* @var string
*/
public $revisionId;
/**
* @var string
*/
Expand Down Expand Up @@ -60,6 +68,34 @@ public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setRevisionCreateTime($revisionCreateTime)
{
$this->revisionCreateTime = $revisionCreateTime;
}
/**
* @return string
*/
public function getRevisionCreateTime()
{
return $this->revisionCreateTime;
}
/**
* @param string
*/
public function setRevisionId($revisionId)
{
$this->revisionId = $revisionId;
}
/**
* @return string
*/
public function getRevisionId()
{
return $this->revisionId;
}
/**
* @param string
*/
Expand Down

0 comments on commit ce8e34d

Please sign in to comment.