Skip to content

Commit 488f7ca

Browse files
1 parent e50f4c0 commit 488f7ca

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

src/ServiceConsumerManagement/Api.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
class Api extends \Google\Collection
2121
{
2222
protected $collection_key = 'options';
23+
/**
24+
* @var string
25+
*/
26+
public $edition;
2327
protected $methodsType = Method::class;
2428
protected $methodsDataType = 'array';
2529
protected $mixinsType = Mixin::class;
@@ -41,6 +45,20 @@ class Api extends \Google\Collection
4145
*/
4246
public $version;
4347

48+
/**
49+
* @param string
50+
*/
51+
public function setEdition($edition)
52+
{
53+
$this->edition = $edition;
54+
}
55+
/**
56+
* @return string
57+
*/
58+
public function getEdition()
59+
{
60+
return $this->edition;
61+
}
4462
/**
4563
* @param Method[]
4664
*/

src/ServiceConsumerManagement/Method.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
class Method extends \Google\Collection
2121
{
2222
protected $collection_key = 'options';
23+
/**
24+
* @var string
25+
*/
26+
public $edition;
2327
/**
2428
* @var string
2529
*/
@@ -47,6 +51,20 @@ class Method extends \Google\Collection
4751
*/
4852
public $syntax;
4953

54+
/**
55+
* @param string
56+
*/
57+
public function setEdition($edition)
58+
{
59+
$this->edition = $edition;
60+
}
61+
/**
62+
* @return string
63+
*/
64+
public function getEdition()
65+
{
66+
return $this->edition;
67+
}
5068
/**
5169
* @param string
5270
*/

0 commit comments

Comments
 (0)