Skip to content

Commit 3051579

Browse files
1 parent 87640c9 commit 3051579

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

src/FirebaseManagement/WebAppConfig.php

+54
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,22 @@ class WebAppConfig extends \Google\Model
5151
* @var string
5252
*/
5353
public $projectId;
54+
/**
55+
* @var string
56+
*/
57+
public $projectNumber;
58+
/**
59+
* @var string
60+
*/
61+
public $realtimeDatabaseUrl;
5462
/**
5563
* @var string
5664
*/
5765
public $storageBucket;
66+
/**
67+
* @var string
68+
*/
69+
public $version;
5870

5971
/**
6072
* @param string
@@ -168,6 +180,34 @@ public function getProjectId()
168180
{
169181
return $this->projectId;
170182
}
183+
/**
184+
* @param string
185+
*/
186+
public function setProjectNumber($projectNumber)
187+
{
188+
$this->projectNumber = $projectNumber;
189+
}
190+
/**
191+
* @return string
192+
*/
193+
public function getProjectNumber()
194+
{
195+
return $this->projectNumber;
196+
}
197+
/**
198+
* @param string
199+
*/
200+
public function setRealtimeDatabaseUrl($realtimeDatabaseUrl)
201+
{
202+
$this->realtimeDatabaseUrl = $realtimeDatabaseUrl;
203+
}
204+
/**
205+
* @return string
206+
*/
207+
public function getRealtimeDatabaseUrl()
208+
{
209+
return $this->realtimeDatabaseUrl;
210+
}
171211
/**
172212
* @param string
173213
*/
@@ -182,6 +222,20 @@ public function getStorageBucket()
182222
{
183223
return $this->storageBucket;
184224
}
225+
/**
226+
* @param string
227+
*/
228+
public function setVersion($version)
229+
{
230+
$this->version = $version;
231+
}
232+
/**
233+
* @return string
234+
*/
235+
public function getVersion()
236+
{
237+
return $this->version;
238+
}
185239
}
186240

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

0 commit comments

Comments
 (0)