Class: Google::Apis::DisplayvideoV3::ListAdGroupAdsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::ListAdGroupAdsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Instance Attribute Summary collapse
-
#ad_group_ads ⇒ Array<Google::Apis::DisplayvideoV3::AdGroupAd>
The list of ad group ads.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAdGroupAdsResponse
constructor
A new instance of ListAdGroupAdsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAdGroupAdsResponse
Returns a new instance of ListAdGroupAdsResponse.
8479 8480 8481 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 8479 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ad_group_ads ⇒ Array<Google::Apis::DisplayvideoV3::AdGroupAd>
The list of ad group ads. This list will be absent if empty.
Corresponds to the JSON property adGroupAds
8470 8471 8472 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 8470 def ad_group_ads @ad_group_ads end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass this value in the
page_token field in the subsequent call to ListAdGroupAds
method to retrieve
the next page of results.
Corresponds to the JSON property nextPageToken
8477 8478 8479 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 8477 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8484 8485 8486 8487 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 8484 def update!(**args) @ad_group_ads = args[:ad_group_ads] if args.key?(:ad_group_ads) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |