Class: Google::Apis::DfareportingV3_3::CreativeFieldValuesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_3::CreativeFieldValuesListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb
Overview
Creative Field Value List Response
Instance Attribute Summary collapse
-
#creative_field_values ⇒ Array<Google::Apis::DfareportingV3_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) ⇒ CreativeFieldValuesListResponse
constructor
A new instance of CreativeFieldValuesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreativeFieldValuesListResponse
Returns a new instance of CreativeFieldValuesListResponse.
4133 4134 4135 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 4133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_field_values ⇒ Array<Google::Apis::DfareportingV3_3::CreativeFieldValue>
Creative field value collection.
Corresponds to the JSON property creativeFieldValues
4120 4121 4122 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 4120 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
4126 4127 4128 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 4126 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
4131 4132 4133 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 4131 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4138 4139 4140 4141 4142 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 4138 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 |