@@ -396,15 +396,19 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
396
396
* Optional. User specified filtering condition in [EBNF
397
397
* format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The following are
398
398
* the filterable fields: * `space.meeting_code` * `space.name` * `start_time` * `end_time`
399
- * For example, `space.meeting_code = "abc-mnop-xyz"`.
399
+ * For example, consider the following filters: * `space.name = "spaces/NAME"` *
400
+ * `space.meeting_code = "abc-mnop-xyz"` * `start_time>="2024-01-01T00:00:00.000Z" AND
401
+ * start_time<="2024-01-02T00:00:00.000Z"` * `end_time IS NULL`
400
402
*/
401
403
@ com .google .api .client .util .Key
402
404
private java .lang .String filter ;
403
405
404
406
/** Optional. User specified filtering condition in [EBNF
405
407
format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The following are the
406
408
filterable fields: * `space.meeting_code` * `space.name` * `start_time` * `end_time` For example,
407
- `space.meeting_code = "abc-mnop-xyz"`.
409
+ consider the following filters: * `space.name = "spaces/NAME"` * `space.meeting_code = "abc-mnop-
410
+ xyz"` * `start_time>="2024-01-01T00:00:00.000Z" AND start_time<="2024-01-02T00:00:00.000Z"` *
411
+ `end_time IS NULL`
408
412
*/
409
413
public java .lang .String getFilter () {
410
414
return filter ;
@@ -414,7 +418,9 @@ public java.lang.String getFilter() {
414
418
* Optional. User specified filtering condition in [EBNF
415
419
* format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The following are
416
420
* the filterable fields: * `space.meeting_code` * `space.name` * `start_time` * `end_time`
417
- * For example, `space.meeting_code = "abc-mnop-xyz"`.
421
+ * For example, consider the following filters: * `space.name = "spaces/NAME"` *
422
+ * `space.meeting_code = "abc-mnop-xyz"` * `start_time>="2024-01-01T00:00:00.000Z" AND
423
+ * start_time<="2024-01-02T00:00:00.000Z"` * `end_time IS NULL`
418
424
*/
419
425
public List setFilter (java .lang .String filter ) {
420
426
this .filter = filter ;
0 commit comments