Show / Hide Table of Contents

Class CompositeFilter

A filter that merges multiple other filters using the given operator.

Inheritance
System.Object
CompositeFilter
Implements
IDirectResponseSchema
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class CompositeFilter : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Filters

The list of filters to combine. Must contain at least one filter.

Declaration
public virtual IList<Filter> Filters { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Filter>

Op

The operator for combining multiple filters.

Declaration
public virtual string Op { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top