Class: Google::Apis::DfareportingV2_5::ListAdvertiserGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_5::ListAdvertiserGroupsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_5/classes.rb,
generated/google/apis/dfareporting_v2_5/representations.rb,
generated/google/apis/dfareporting_v2_5/representations.rb
Overview
Advertiser Group List Response
Instance Attribute Summary collapse
-
#advertiser_groups ⇒ Array<Google::Apis::DfareportingV2_5::AdvertiserGroup>
Advertiser group collection.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAdvertiserGroupsResponse
constructor
A new instance of ListAdvertiserGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAdvertiserGroupsResponse
Returns a new instance of ListAdvertiserGroupsResponse.
1188 1189 1190 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1188 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advertiser_groups ⇒ Array<Google::Apis::DfareportingV2_5::AdvertiserGroup>
Advertiser group collection.
Corresponds to the JSON property advertiserGroups
1175 1176 1177 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1175 def advertiser_groups @advertiser_groups end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#advertiserGroupsListResponse".
Corresponds to the JSON property kind
1181 1182 1183 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1181 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
1186 1187 1188 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1186 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1193 1194 1195 1196 1197 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1193 def update!(**args) @advertiser_groups = args[:advertiser_groups] if args.key?(:advertiser_groups) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |