Skip to content

Commit f3439f0

Browse files
1 parent f0c8185 commit f3439f0

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

src/Monitoring/Criteria.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,29 @@
2020
class Criteria extends \Google\Collection
2121
{
2222
protected $collection_key = 'policies';
23+
/**
24+
* @var string
25+
*/
26+
public $filter;
2327
/**
2428
* @var string[]
2529
*/
2630
public $policies;
2731

32+
/**
33+
* @param string
34+
*/
35+
public function setFilter($filter)
36+
{
37+
$this->filter = $filter;
38+
}
39+
/**
40+
* @return string
41+
*/
42+
public function getFilter()
43+
{
44+
return $this->filter;
45+
}
2846
/**
2947
* @param string[]
3048
*/

0 commit comments

Comments
 (0)