Class: Google::Apis::DfareportingV3_0::CreativeFieldValuesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_0::CreativeFieldValuesListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb
Overview
Creative Field Value List Response
Instance Attribute Summary collapse
-
#creative_field_values ⇒ Array<Google::Apis::DfareportingV3_0::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) ⇒ CreativeFieldValuesListResponse
constructor
A new instance of CreativeFieldValuesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreativeFieldValuesListResponse
Returns a new instance of CreativeFieldValuesListResponse
4172 4173 4174 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4172 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_field_values ⇒ Array<Google::Apis::DfareportingV3_0::CreativeFieldValue>
Creative field value collection.
Corresponds to the JSON property creativeFieldValues
4159 4160 4161 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4159 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
4165 4166 4167 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4165 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
4170 4171 4172 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4170 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4177 4178 4179 4180 4181 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4177 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 |