Class: Google::Apis::DfareportingV2_3::ListCreativeFieldValuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::ListCreativeFieldValuesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb
Overview
Creative Field Value List Response
Instance Attribute Summary collapse
-
#creative_field_values ⇒ Array<Google::Apis::DfareportingV2_3::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.
3558 3559 3560 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 3558 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_field_values ⇒ Array<Google::Apis::DfareportingV2_3::CreativeFieldValue>
Creative field value collection.
Corresponds to the JSON property creativeFieldValues
3545 3546 3547 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 3545 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
3551 3552 3553 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 3551 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
3556 3557 3558 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 3556 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3563 3564 3565 3566 3567 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 3563 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 |