You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-analyticsdata/v1beta/2.0.0/com/google/api/services/analyticsdata/v1beta/model/Filter.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,13 @@ public final class Filter extends com.google.api.client.json.GenericJson {
37
37
@com.google.api.client.util.Key
38
38
privateBetweenFilterbetweenFilter;
39
39
40
+
/**
41
+
* A filter for empty values such as "(not set)" and "" values.
42
+
* The value may be {@code null}.
43
+
*/
44
+
@com.google.api.client.util.Key
45
+
privateEmptyFilteremptyFilter;
46
+
40
47
/**
41
48
* The dimension name or metric name. In most methods, dimensions & metrics can be used for the
42
49
* first time in this field. However in a RunPivotReportRequest, this field must be additionally
@@ -84,6 +91,23 @@ public Filter setBetweenFilter(BetweenFilter betweenFilter) {
84
91
returnthis;
85
92
}
86
93
94
+
/**
95
+
* A filter for empty values such as "(not set)" and "" values.
96
+
* @return value or {@code null} for none
97
+
*/
98
+
publicEmptyFiltergetEmptyFilter() {
99
+
returnemptyFilter;
100
+
}
101
+
102
+
/**
103
+
* A filter for empty values such as "(not set)" and "" values.
104
+
* @param emptyFilter emptyFilter or {@code null} for none
0 commit comments