Show / Hide Table of Contents

Class IdFilter

A filtering option that filters entities by their entity IDs.

Inheritance
System.Object
IdFilter
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 IdFilter : IDirectResponseSchema

Properties

AdGroupAdIds

YouTube Ads to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

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

AdGroupIds

YouTube Ad Groups to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

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

CampaignIds

Campaigns to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

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

ETag

The ETag of the item.

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

InsertionOrderIds

Insertion Orders to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

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

LineItemIds

Line Items to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

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

MediaProductIds

Media Products to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

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

Implements

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