Class: Google::Apis::DoubleclickbidmanagerV1_1::DownloadResponse

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

Overview

Download response.

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) ⇒ DownloadResponse

Returns a new instance of DownloadResponse.



167
168
169
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 167

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

Instance Attribute Details

#ad_groupsString

Retrieved ad groups in SDF format. Corresponds to the JSON property adGroups

Returns:

  • (String)


140
141
142
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 140

def ad_groups
  @ad_groups
end

#adsString

Retrieved ads in SDF format. Corresponds to the JSON property ads

Returns:

  • (String)


145
146
147
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 145

def ads
  @ads
end

#campaignsString

Retrieved campaigns in SDF format. Corresponds to the JSON property campaigns

Returns:

  • (String)


150
151
152
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 150

def campaigns
  @campaigns
end

#insertion_ordersString

Retrieved insertion orders in SDF format. Corresponds to the JSON property insertionOrders

Returns:

  • (String)


155
156
157
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 155

def insertion_orders
  @insertion_orders
end

#inventory_sourcesString

Corresponds to the JSON property inventorySources

Returns:

  • (String)


160
161
162
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 160

def inventory_sources
  @inventory_sources
end

#line_itemsString

Retrieved line items in SDF format. Corresponds to the JSON property lineItems

Returns:

  • (String)


165
166
167
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 165

def line_items
  @line_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



172
173
174
175
176
177
178
179
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 172

def update!(**args)
  @ad_groups = args[:ad_groups] if args.key?(:ad_groups)
  @ads = args[:ads] if args.key?(:ads)
  @campaigns = args[:campaigns] if args.key?(:campaigns)
  @insertion_orders = args[:insertion_orders] if args.key?(:insertion_orders)
  @inventory_sources = args[:inventory_sources] if args.key?(:inventory_sources)
  @line_items = args[:line_items] if args.key?(:line_items)
end