Show / Hide Table of Contents

Class ParentEntityFilter

A filtering option that filters on selected file types belonging to a chosen set of filter entities.

Inheritance
System.Object
ParentEntityFilter
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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class ParentEntityFilter : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

FileType

Required. File types that will be returned.

Declaration
[JsonProperty("fileType")]
public virtual IList<string> FileType { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

FilterIds

The IDs of the specified filter type. This is used to filter entities to fetch. If filter type is not FILTER_TYPE_NONE, at least one ID must be specified.

Declaration
[JsonProperty("filterIds")]
public virtual IList<long?> FilterIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int64>>

FilterType

Required. Filter type used to filter fetched entities.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top