Class: Google::Apis::DoubleclickbidmanagerV1::DownloadResponse
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1::DownloadResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/doubleclickbidmanager_v1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb
Overview
Download response.
Instance Attribute Summary collapse
-
#ad_groups ⇒ String
Retrieved ad groups in SDF format.
-
#ads ⇒ String
Retrieved ads in SDF format.
-
#campaigns ⇒ String
Retrieved campaigns in SDF format.
-
#insertion_orders ⇒ String
Retrieved insertion orders in SDF format.
-
#line_items ⇒ String
Retrieved line items in SDF format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DownloadResponse
constructor
A new instance of DownloadResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DownloadResponse
Returns a new instance of DownloadResponse
155 156 157 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 155 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ad_groups ⇒ String
Retrieved ad groups in SDF format.
Corresponds to the JSON property adGroups
133 134 135 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 133 def ad_groups @ad_groups end |
#ads ⇒ String
Retrieved ads in SDF format.
Corresponds to the JSON property ads
138 139 140 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 138 def ads @ads end |
#campaigns ⇒ String
Retrieved campaigns in SDF format.
Corresponds to the JSON property campaigns
143 144 145 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 143 def campaigns @campaigns end |
#insertion_orders ⇒ String
Retrieved insertion orders in SDF format.
Corresponds to the JSON property insertionOrders
148 149 150 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 148 def insertion_orders @insertion_orders end |
#line_items ⇒ String
Retrieved line items in SDF format.
Corresponds to the JSON property lineItems
153 154 155 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 153 def line_items @line_items end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
160 161 162 163 164 165 166 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 160 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) @line_items = args[:line_items] if args.key?(:line_items) end |