-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathInListFilter.php
More file actions
105 lines (93 loc) · 2.61 KB
/
InListFilter.php
File metadata and controls
105 lines (93 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/analytics/data/v1alpha/data.proto
namespace Google\Analytics\Data\V1alpha;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* The result needs to be in a list of string values.
*
* Generated from protobuf message <code>google.analytics.data.v1alpha.InListFilter</code>
*/
class InListFilter extends \Google\Protobuf\Internal\Message
{
/**
* The list of string values.
* Must be non-empty.
*
* Generated from protobuf field <code>repeated string values = 1;</code>
*/
private $values;
/**
* If true, the string value is case sensitive.
*
* Generated from protobuf field <code>bool case_sensitive = 2;</code>
*/
protected $case_sensitive = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string[] $values
* The list of string values.
* Must be non-empty.
* @type bool $case_sensitive
* If true, the string value is case sensitive.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Analytics\Data\V1Alpha\Data::initOnce();
parent::__construct($data);
}
/**
* The list of string values.
* Must be non-empty.
*
* Generated from protobuf field <code>repeated string values = 1;</code>
* @return RepeatedField<string>
*/
public function getValues()
{
return $this->values;
}
/**
* The list of string values.
* Must be non-empty.
*
* Generated from protobuf field <code>repeated string values = 1;</code>
* @param string[] $var
* @return $this
*/
public function setValues($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->values = $arr;
return $this;
}
/**
* If true, the string value is case sensitive.
*
* Generated from protobuf field <code>bool case_sensitive = 2;</code>
* @return bool
*/
public function getCaseSensitive()
{
return $this->case_sensitive;
}
/**
* If true, the string value is case sensitive.
*
* Generated from protobuf field <code>bool case_sensitive = 2;</code>
* @param bool $var
* @return $this
*/
public function setCaseSensitive($var)
{
GPBUtil::checkBool($var);
$this->case_sensitive = $var;
return $this;
}
}