Skip to content

Commit 4532e49

Browse files
1 parent 489ef18 commit 4532e49

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

src/Firestore/GoogleFirestoreAdminV1Index.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,16 @@ class GoogleFirestoreAdminV1Index extends \Google\Collection
2424
* @var string
2525
*/
2626
public $apiScope;
27+
/**
28+
* @var string
29+
*/
30+
public $density;
2731
protected $fieldsType = GoogleFirestoreAdminV1IndexField::class;
2832
protected $fieldsDataType = 'array';
33+
/**
34+
* @var bool
35+
*/
36+
public $multikey;
2937
/**
3038
* @var string
3139
*/
@@ -53,6 +61,20 @@ public function getApiScope()
5361
{
5462
return $this->apiScope;
5563
}
64+
/**
65+
* @param string
66+
*/
67+
public function setDensity($density)
68+
{
69+
$this->density = $density;
70+
}
71+
/**
72+
* @return string
73+
*/
74+
public function getDensity()
75+
{
76+
return $this->density;
77+
}
5678
/**
5779
* @param GoogleFirestoreAdminV1IndexField[]
5880
*/
@@ -67,6 +89,20 @@ public function getFields()
6789
{
6890
return $this->fields;
6991
}
92+
/**
93+
* @param bool
94+
*/
95+
public function setMultikey($multikey)
96+
{
97+
$this->multikey = $multikey;
98+
}
99+
/**
100+
* @return bool
101+
*/
102+
public function getMultikey()
103+
{
104+
return $this->multikey;
105+
}
70106
/**
71107
* @param string
72108
*/

0 commit comments

Comments
 (0)