Class: Google::Apis::DfareportingV2_5::ListCreativeFieldValuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_5::ListCreativeFieldValuesResponse
- 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 more...
Overview
Creative Field Value List Response
Instance Attribute Summary collapse
-
#creative_field_values ⇒ Array<Google::Apis::DfareportingV2_5::CreativeFieldValue>
Creative field value 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) ⇒ ListCreativeFieldValuesResponse
constructor
A new instance of ListCreativeFieldValuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCreativeFieldValuesResponse
Returns a new instance of ListCreativeFieldValuesResponse
3791 3792 3793 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 3791 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_field_values ⇒ Array<Google::Apis::DfareportingV2_5::CreativeFieldValue>
Creative field value collection.
Corresponds to the JSON property creativeFieldValues
3778 3779 3780 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 3778 def creative_field_values @creative_field_values end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#creativeFieldValuesListResponse".
Corresponds to the JSON property kind
3784 3785 3786 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 3784 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
3789 3790 3791 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 3789 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3796 3797 3798 3799 3800 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 3796 def update!(**args) @creative_field_values = args[:creative_field_values] if args.key?(:creative_field_values) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |