Show / Hide Table of Contents

Class CompositeFilter

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

Inheritance
System.Object
CompositeFilter
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class CompositeFilter : 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
[JsonProperty("filters")]
public virtual IList<Filter> Filters { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Filter>

Op

The operator for combining multiple filters.

Declaration
[JsonProperty("op")]
public virtual string Op { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top