Class: Google::Apis::DisplayvideoV1::IdFilter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb

Overview

A filtering option that filters entities by their entity IDs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ IdFilter

Returns a new instance of IdFilter.



149
150
151
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 149

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ad_group_ad_idsArray<Fixnum>

TrueView Ads to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest. Corresponds to the JSON property adGroupAdIds

Returns:

  • (Array<Fixnum>)


107
108
109
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 107

def ad_group_ad_ids
  @ad_group_ad_ids
end

#ad_group_idsArray<Fixnum>

TrueView Ad Groups to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest. Corresponds to the JSON property adGroupIds

Returns:

  • (Array<Fixnum>)


115
116
117
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 115

def ad_group_ids
  @ad_group_ids
end

#campaign_idsArray<Fixnum>

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

Returns:

  • (Array<Fixnum>)


123
124
125
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 123

def campaign_ids
  @campaign_ids
end

#insertion_order_idsArray<Fixnum>

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

Returns:

  • (Array<Fixnum>)


131
132
133
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 131

def insertion_order_ids
  @insertion_order_ids
end

#line_item_idsArray<Fixnum>

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

Returns:

  • (Array<Fixnum>)


139
140
141
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 139

def line_item_ids
  @line_item_ids
end

#media_product_idsArray<Fixnum>

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

Returns:

  • (Array<Fixnum>)


147
148
149
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 147

def media_product_ids
  @media_product_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



154
155
156
157
158
159
160
161
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 154

def update!(**args)
  @ad_group_ad_ids = args[:ad_group_ad_ids] if args.key?(:ad_group_ad_ids)
  @ad_group_ids = args[:ad_group_ids] if args.key?(:ad_group_ids)
  @campaign_ids = args[:campaign_ids] if args.key?(:campaign_ids)
  @insertion_order_ids = args[:insertion_order_ids] if args.key?(:insertion_order_ids)
  @line_item_ids = args[:line_item_ids] if args.key?(:line_item_ids)
  @media_product_ids = args[:media_product_ids] if args.key?(:media_product_ids)
end