Skip to content

Commit 4044f9d

Browse files
Regenerate connectors client
1 parent c9fa9d7 commit 4044f9d

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

src/Connectors/AuthCodeData.php

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717

1818
namespace Google\Service\Connectors;
1919

20-
class AuthCodeData extends \Google\Model
20+
class AuthCodeData extends \Google\Collection
2121
{
22+
protected $collection_key = 'scopes';
2223
/**
2324
* @var string
2425
*/
@@ -31,6 +32,10 @@ class AuthCodeData extends \Google\Model
3132
* @var string
3233
*/
3334
public $redirectUri;
35+
/**
36+
* @var string[]
37+
*/
38+
public $scopes;
3439

3540
/**
3641
* @param string
@@ -74,6 +79,20 @@ public function getRedirectUri()
7479
{
7580
return $this->redirectUri;
7681
}
82+
/**
83+
* @param string[]
84+
*/
85+
public function setScopes($scopes)
86+
{
87+
$this->scopes = $scopes;
88+
}
89+
/**
90+
* @return string[]
91+
*/
92+
public function getScopes()
93+
{
94+
return $this->scopes;
95+
}
7796
}
7897

7998
// Adding a class alias for backwards compatibility with the previous class name.

src/Connectors/Instance.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ class Instance extends \Google\Collection
2424
* @var string
2525
*/
2626
public $consumerDefinedName;
27+
/**
28+
* @var string
29+
*/
30+
public $consumerProjectNumber;
2731
/**
2832
* @var string
2933
*/
@@ -93,6 +97,20 @@ public function getConsumerDefinedName()
9397
{
9498
return $this->consumerDefinedName;
9599
}
100+
/**
101+
* @param string
102+
*/
103+
public function setConsumerProjectNumber($consumerProjectNumber)
104+
{
105+
$this->consumerProjectNumber = $consumerProjectNumber;
106+
}
107+
/**
108+
* @return string
109+
*/
110+
public function getConsumerProjectNumber()
111+
{
112+
return $this->consumerProjectNumber;
113+
}
96114
/**
97115
* @param string
98116
*/

0 commit comments

Comments
 (0)