Class: Google::Apis::DfareportingV2_1::ListCreativeGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::ListCreativeGroupsResponse
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb
Overview
Creative Group List Response
Instance Attribute Summary collapse
-
#creative_groups ⇒ Array<Google::Apis::DfareportingV2_1::CreativeGroup>
Creative 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) ⇒ ListCreativeGroupsResponse
constructor
A new instance of ListCreativeGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCreativeGroupsResponse
Returns a new instance of ListCreativeGroupsResponse.
3665 3666 3667 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3665 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_groups ⇒ Array<Google::Apis::DfareportingV2_1::CreativeGroup>
Creative group collection.
Corresponds to the JSON property creativeGroups
3652 3653 3654 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3652 def creative_groups @creative_groups end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#creativeGroupsListResponse".
Corresponds to the JSON property kind
3658 3659 3660 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3658 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
3663 3664 3665 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3663 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3670 3671 3672 3673 3674 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3670 def update!(**args) @creative_groups = args[:creative_groups] unless args[:creative_groups].nil? @kind = args[:kind] unless args[:kind].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end |